Skip to content

Instantly share code, notes, and snippets.

@esotericist
Last active July 27, 2018 05:32
Show Gist options
  • Save esotericist/c478e5a93ed7ac2dd134a24853df40c1 to your computer and use it in GitHub Desktop.
Save esotericist/c478e5a93ed7ac2dd134a24853df40c1 to your computer and use it in GitHub Desktop.
crafttweaker script for placing markers on antique atlas, and the resultant crafttweaker log
import crafttweaker.events.IEventManager;
import crafttweaker.item.IItemStack;
import crafttweaker.player.IPlayer;
import mods.AAMarkerAPI;
//Clicking (left- or right-) on a the specified blocks with an Antique Atlas item in-hand will add a marker to that atlas
//Clicking on a spawner will add a marker with the "skull" icon, and the diamond ore will use the "diamond" icon
events.onPlayerInteract(function(event as crafttweaker.event.PlayerInteractEvent){
if (<antiqueatlas:antique_atlas:*>.matches(event.player.currentItem)) {
val samplearray = [
<geolosys:ore_sample_vanilla:0>,
<geolosys:ore_sample_vanilla:1>,
<geolosys:ore_sample_vanilla:2>,
<geolosys:ore_sample_vanilla:3>,
<geolosys:ore_sample_vanilla:4>,
<geolosys:ore_sample_vanilla:5>,
<geolosys:ore_sample_vanilla:6>,
<geolosys:ore_sample:0>,
<geolosys:ore_sample:1>,
<geolosys:ore_sample:2>,
<geolosys:ore_sample:3>,
<geolosys:ore_sample:4>,
<geolosys:ore_sample:5>,
<geolosys:ore_sample:6>,
<geolosys:ore_sample:7>,
<geolosys:ore_sample:8>,
<geolosys:ore_sample:9>,
<geolosys:ore_sample:10>,
] as IItemStack[];
var issample = false as bool;
var atlasID as int;
var x as double;
var z as double;
var thisname as string;
if (!event.world.isRemote()){
atlasID = event.player.currentItem.metadata;
x = event.player.x;
z = event.player.z;
for item in samplearray {
if ( (item.asBlock()) in (event.block) ) {
issample = true;
thisname = item.displayName as string;
print(thisname);
}
}
if (issample == true) {
print(thisname);
mods.AAMarkerAPI.putMarker(event.world, false, atlasID, "diamond", event.block.displayName, x, z);
event.player.sendMessage(event.block.displayName + " marked.");
event.cancel();
}
if ((<minecraft:mob_spawner>.asBlock()) in (event.block)){
mods.AAMarkerAPI.putMarker(event.world, false, atlasID, "skull", event.block.displayName , x, z);
event.player.sendMessage("Marker added");
event.cancel();
}
if ((<minecraft:diamond_ore>.asBlock()) in (event.block)){
mods.AAMarkerAPI.putMarker(event.world, false, atlasID, "diamond", event.block.displayName , x, z);
event.player.sendMessage("Marker added");
event.cancel();
}
}
}
});
[INITIALIZATION][CLIENT][INFO] CraftTweaker: Building registry
[INITIALIZATION][CLIENT][INFO] CraftTweaker: Successfully built item registry
[INITIALIZATION][CLIENT][INFO] Loading scripts
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: antiqueatlas.zs}
[INITIALIZATION][CLIENT][ERROR] [crafttweaker]: Error executing {[0:crafttweaker]: antiqueatlas.zs}: Bad local variable type
Exception Details:
Location:
ZenClass0.handle(Lcrafttweaker/api/event/PlayerInteractEvent;)V @369: aload
Reason:
Type top (current frame, locals[21]) is not assignable to reference type
Current Frame:
bci: @369
flags: { }
locals: { 'ZenClass0', 'crafttweaker/api/event/PlayerInteractEvent', top, '[Lcrafttweaker/api/item/IItemStack;', top, integer, top, integer, top, top, double, double_2nd, top, top, double, double_2nd, top, top, integer }
stack: { }
Bytecode:
0x0000000: 120f 1210 b800 162b b900 1c01 00b9 0022
0x0000010: 0100 b900 2802 0099 023e 1229 bd00 2b59
0x0000020: 122c 122e 122c b800 1653 5912 2f12 2e12
0x0000030: 2fb8 0016 5359 1230 122e 1230 b800 1653
0x0000040: 5912 3112 2e12 31b8 0016 5359 1232 122e
0x0000050: 1232 b800 1653 5912 3312 2e12 33b8 0016
0x0000060: 5359 1234 122e 1234 b800 1653 5912 3512
0x0000070: 3712 2cb8 0016 5359 1238 1237 122f b800
0x0000080: 1653 5912 3912 3712 30b8 0016 5359 123a
0x0000090: 1237 1231 b800 1653 5912 3b12 3712 32b8
0x00000a0: 0016 5359 123c 1237 1233 b800 1653 5912
0x00000b0: 3d12 3712 34b8 0016 5359 123e 1237 1235
0x00000c0: b800 1653 5912 3f12 3712 38b8 0016 5359
0x00000d0: 1240 1237 1239 b800 1653 5912 4112 3712
0x00000e0: 3ab8 0016 534e 0336 052b b900 4701 00b9
0x00000f0: 004d 0100 0482 9901 5f2b b900 1c01 00b9
0x0000100: 0022 0100 b900 5101 0036 072b b900 1c01
0x0000110: 00b9 0057 0100 390a 2bb9 001c 0100 b900
0x0000120: 5a01 0039 0e2d 0336 1259 be15 12a4 0035
0x0000130: 5915 1232 3a13 1913 b900 5e01 002b b900
0x0000140: 6101 00b9 0066 0200 9900 1404 3605 1913
0x0000150: b900 6a01 003a 1519 15b8 0070 8412 01a7
0x0000160: ffca 5715 0504 9f00 0703 a700 0404 9900
0x0000170: 5319 15b8 0070 2bb9 0047 0100 0315 0712
0x0000180: 722b b900 6101 00b9 0073 0100 180a 180e
0x0000190: b800 792b b900 1c01 00bb 007b 59b7 007c
0x00001a0: 2bb9 0061 0100 b900 7301 00b6 0080 1282
0x00001b0: b600 80b6 0085 b900 8a02 002b b900 8f01
0x00001c0: 0012 9112 2cb8 0016 b900 5e01 002b b900
0x00001d0: 6101 00b9 0066 0200 9900 332b b900 4701
0x00001e0: 0003 1507 1293 2bb9 0061 0100 b900 7301
0x00001f0: 0018 0a18 0eb8 0079 2bb9 001c 0100 1295
0x0000200: b900 8a02 002b b900 8f01 0012 9712 2cb8
0x0000210: 0016 b900 5e01 002b b900 6101 00b9 0066
0x0000220: 0200 9900 332b b900 4701 0003 1507 1272
0x0000230: 2bb9 0061 0100 b900 7301 0018 0a18 0eb8
0x0000240: 0079 2bb9 001c 0100 1295 b900 8a02 002b
0x0000250: b900 8f01 00b1
Stackmap Table:
full_frame(@297,{Object[#2],Object[#67],Top,Object[#153],Top,Integer,Top,Integer,Top,Top,Double,Top,Top,Double,Top,Top,Integer},{Object[#153]})
full_frame(@348,{Object[#2],Object[#67],Top,Object[#153],Top,Integer,Top,Integer,Top,Top,Double,Top,Top,Double,Top,Top,Integer,Object[#43]},{Object[#153]})
full_frame(@354,{Object[#2],Object[#67],Top,Object[#153],Top,Integer,Top,Integer,Top,Top,Double,Top,Top,Double,Top,Top,Integer},{Object[#153]})
same_frame(@365)
same_locals_1_stack_item_frame(@366,Integer)
same_frame_extended(@449)
same_frame_extended(@523)
full_frame(@597,{Object[#2],Object[#67]},{})
java.lang.VerifyError: Bad local variable type
Exception Details:
Location:
ZenClass0.handle(Lcrafttweaker/api/event/PlayerInteractEvent;)V @369: aload
Reason:
Type top (current frame, locals[21]) is not assignable to reference type
Current Frame:
bci: @369
flags: { }
locals: { 'ZenClass0', 'crafttweaker/api/event/PlayerInteractEvent', top, '[Lcrafttweaker/api/item/IItemStack;', top, integer, top, integer, top, top, double, double_2nd, top, top, double, double_2nd, top, top, integer }
stack: { }
Bytecode:
0x0000000: 120f 1210 b800 162b b900 1c01 00b9 0022
0x0000010: 0100 b900 2802 0099 023e 1229 bd00 2b59
0x0000020: 122c 122e 122c b800 1653 5912 2f12 2e12
0x0000030: 2fb8 0016 5359 1230 122e 1230 b800 1653
0x0000040: 5912 3112 2e12 31b8 0016 5359 1232 122e
0x0000050: 1232 b800 1653 5912 3312 2e12 33b8 0016
0x0000060: 5359 1234 122e 1234 b800 1653 5912 3512
0x0000070: 3712 2cb8 0016 5359 1238 1237 122f b800
0x0000080: 1653 5912 3912 3712 30b8 0016 5359 123a
0x0000090: 1237 1231 b800 1653 5912 3b12 3712 32b8
0x00000a0: 0016 5359 123c 1237 1233 b800 1653 5912
0x00000b0: 3d12 3712 34b8 0016 5359 123e 1237 1235
0x00000c0: b800 1653 5912 3f12 3712 38b8 0016 5359
0x00000d0: 1240 1237 1239 b800 1653 5912 4112 3712
0x00000e0: 3ab8 0016 534e 0336 052b b900 4701 00b9
0x00000f0: 004d 0100 0482 9901 5f2b b900 1c01 00b9
0x0000100: 0022 0100 b900 5101 0036 072b b900 1c01
0x0000110: 00b9 0057 0100 390a 2bb9 001c 0100 b900
0x0000120: 5a01 0039 0e2d 0336 1259 be15 12a4 0035
0x0000130: 5915 1232 3a13 1913 b900 5e01 002b b900
0x0000140: 6101 00b9 0066 0200 9900 1404 3605 1913
0x0000150: b900 6a01 003a 1519 15b8 0070 8412 01a7
0x0000160: ffca 5715 0504 9f00 0703 a700 0404 9900
0x0000170: 5319 15b8 0070 2bb9 0047 0100 0315 0712
0x0000180: 722b b900 6101 00b9 0073 0100 180a 180e
0x0000190: b800 792b b900 1c01 00bb 007b 59b7 007c
0x00001a0: 2bb9 0061 0100 b900 7301 00b6 0080 1282
0x00001b0: b600 80b6 0085 b900 8a02 002b b900 8f01
0x00001c0: 0012 9112 2cb8 0016 b900 5e01 002b b900
0x00001d0: 6101 00b9 0066 0200 9900 332b b900 4701
0x00001e0: 0003 1507 1293 2bb9 0061 0100 b900 7301
0x00001f0: 0018 0a18 0eb8 0079 2bb9 001c 0100 1295
0x0000200: b900 8a02 002b b900 8f01 0012 9712 2cb8
0x0000210: 0016 b900 5e01 002b b900 6101 00b9 0066
0x0000220: 0200 9900 332b b900 4701 0003 1507 1272
0x0000230: 2bb9 0061 0100 b900 7301 0018 0a18 0eb8
0x0000240: 0079 2bb9 001c 0100 1295 b900 8a02 002b
0x0000250: b900 8f01 00b1
Stackmap Table:
full_frame(@297,{Object[#2],Object[#67],Top,Object[#153],Top,Integer,Top,Integer,Top,Top,Double,Top,Top,Double,Top,Top,Integer},{Object[#153]})
full_frame(@348,{Object[#2],Object[#67],Top,Object[#153],Top,Integer,Top,Integer,Top,Top,Double,Top,Top,Double,Top,Top,Integer,Object[#43]},{Object[#153]})
full_frame(@354,{Object[#2],Object[#67],Top,Object[#153],Top,Integer,Top,Integer,Top,Top,Double,Top,Top,Double,Top,Top,Integer},{Object[#153]})
same_frame(@365)
same_locals_1_stack_item_frame(@366,Integer)
same_frame_extended(@449)
same_frame_extended(@523)
full_frame(@597,{Object[#2],Object[#67]},{})
at Antiqueatlas.__script__(antiqueatlas.zs:11)
at __ZenMain__.run(Antiqueatlas)
at crafttweaker.runtime.CrTTweaker.loadScript(CrTTweaker.java:174)
at crafttweaker.runtime.CrTTweaker.loadScript(CrTTweaker.java:68)
at crafttweaker.runtime.CrTTweaker.load(CrTTweaker.java:62)
at crafttweaker.CrafttweakerImplementationAPI.load(CrafttweakerImplementationAPI.java:115)
at crafttweaker.mc1120.events.CommonEventHandler.registerRecipes(CommonEventHandler.java:55)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_58_CommonEventHandler_registerRecipes_Register.invoke(.dynamic)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)
at net.minecraftforge.fml.common.eventhandler.EventBus$1.invoke(EventBus.java:144)
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182)
at net.minecraftforge.registries.GameData.fireRegistryEvents(GameData.java:750)
at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:622)
at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742)
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:329)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:534)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:377)
at net.minecraft.client.main.Main.main(SourceFile:123)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:196)
at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:231)
at org.multimc.EntryPoint.listen(EntryPoint.java:143)
at org.multimc.EntryPoint.main(EntryPoint.java:34)
[INITIALIZATION][CLIENT][INFO] Completed script loading in: 228ms
[SERVER_STARTED][CLIENT][INFO] Fixed the RecipeBook
[22:31:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[22:31:34] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[22:31:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[22:31:34] [main/INFO] [FML]: Forge Mod Loader version 14.23.4.2705 for Minecraft 1.12.2 loading
[22:31:34] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_101, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jdk1.8.0_101\jre
[22:31:35] [main/INFO] [FML]: Searching C:\Games\MultiMC\instances\Antique Cities\.minecraft\mods for mods
[22:31:35] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in ResourceLoader-MC1.12.1-1.5.3.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[22:31:35] [main/WARN] [FML]: The coremod lumien.resourceloader.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[22:31:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[22:31:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[22:31:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[22:31:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[22:31:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[22:31:36] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
[22:31:36] [main/INFO] [FML]: Found valid fingerprint for Minecraft. Certificate fingerprint cd99959656f753dc28d863b46769f7f8fbaefcfc
[22:31:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[22:31:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[22:31:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[22:31:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[22:31:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[22:31:37] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[22:31:37] [main/INFO] [net.minecraft.client.Minecraft]: Setting user: esotericist
[22:31:40] [main/WARN] [net.minecraft.client.settings.GameSettings]: Skipping bad option: lastServer:
[22:31:40] [main/INFO] [net.minecraft.client.Minecraft]: LWJGL Version: 2.9.4
[22:31:41] [main/INFO] [FML]: -- System Details --
Details:
Minecraft Version: 1.12.2
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_101, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 445999376 bytes (425 MB) / 905445376 bytes (863 MB) up to 6681526272 bytes (6372 MB)
JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xms512m -Xmx7168m
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML:
Loaded coremods (and transformers):
LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)
lumien.resourceloader.asm.ClassTransformer
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 347.25' Renderer: 'GeForce GTX 770/PCIe/SSE2'
[22:31:41] [main/INFO] [FML]: MinecraftForge v14.23.4.2705 Initialized
[22:31:41] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[22:31:41] [main/INFO] [FML]: Replaced 1036 ore ingredients
[22:31:41] [main/INFO] [FML]: Searching C:\Games\MultiMC\instances\Antique Cities\.minecraft\mods for mods
[22:31:42] [main/WARN] [FML]: Mod clienttweaks is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 3.1.8
[22:31:43] [main/WARN] [FML]: Mod mindshaft is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 0.5
[22:31:43] [main/INFO] [FML]: Forge Mod Loader has identified 18 mods to load
[22:31:43] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, aactadapter, antiqueatlas, antiqueatlasoverlay, antiquecities, clienttweaks, ctgui, crafttweaker, crafttweakerjei, ding, geolosys, lostcities, mcjtylib_ng, mindshaft, resourceloader] at CLIENT
[22:31:43] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, aactadapter, antiqueatlas, antiqueatlasoverlay, antiquecities, clienttweaks, ctgui, crafttweaker, crafttweakerjei, ding, geolosys, lostcities, mcjtylib_ng, mindshaft, resourceloader] at SERVER
[22:31:44] [main/INFO] [net.minecraft.client.resources.SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:AACTAdapter, FMLFileResourcePack:Antique Atlas, FMLFileResourcePack:Antique Atlas Overlay, FMLFileResourcePack:Antique Cities, FMLFileResourcePack:Client Tweaks, FMLFileResourcePack:CT-GUI, FMLFileResourcePack:CraftTweaker2, FMLFileResourcePack:CraftTweaker JEI Support, FMLFileResourcePack:Ding, FMLFileResourcePack:Geolosys, FMLFileResourcePack:The Lost Cities, FMLFileResourcePack:McJtyLib, FMLFileResourcePack:Mindshaft, FMLFileResourcePack:Resource Loader, CustomResources, CustomOverridingResources
[22:31:44] [main/INFO] [FML]: Processing ObjectHolder annotations
[22:31:44] [main/INFO] [FML]: Found 1172 ObjectHolder annotations
[22:31:44] [main/INFO] [FML]: Identifying ItemStackHolder annotations
[22:31:44] [main/INFO] [FML]: Found 0 ItemStackHolder annotations
[22:31:44] [main/INFO] [FML]: Configured a dormant chunk cache size of 0
[22:31:44] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set TEST with 2 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set bridge_coveredx with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set bridge_coveredxoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set bridge_coveredz with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set bridge_coveredzoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set bridge_openx with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set bridge_openxoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set bridge_openz with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set bridge_openzoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingfloor1 with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingfloor1occluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingfloor2 with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingfloor2occluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingfloor3 with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingfloor3occluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingfloor4 with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingfloor4occluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingtall with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingtalloccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set buildingtallroof with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set fountain with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set fountainoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set highwayintersection with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set highwayintersectionoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set highwayx with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set highwayxoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set highwayz with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set highwayzoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set park with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set parkoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set ruinfloor1 with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set ruinfloor1occluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set ruinfloor2 with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set ruinfloor2occluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set ruinfloor3 with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set ruinfloor3occluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set ruinfloor4 with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set ruinfloor4occluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set street with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set streetoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set trainrampleft with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set trainrampleftoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set trainrampright with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set trainramprightoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set trainstationopen with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set trainstationopenoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set trainstationroofed with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Loaded texture set trainstationroofedoccluded with 1 custom texture(s)
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set WATER for biome 0
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set PLAINS for biome 1
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set DESERT for biome 2
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MOUNTAINS for biome 3
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set FOREST for biome 4
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set PINES for biome 5
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SWAMP for biome 6
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set WATER for biome 7
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set CAVE_WALLS for biome 8
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SHORE for biome 9
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ICE for biome 10
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ICE for biome 11
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SNOW for biome 12
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SNOW_HILLS for biome 13
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MUSHROOM for biome 14
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SHORE for biome 15
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SHORE for biome 16
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set DESERT_HILLS for biome 17
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set FOREST_HILLS for biome 18
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set PINES_HILLS for biome 19
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MOUNTAINS for biome 20
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set JUNGLE for biome 21
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set JUNGLE_HILLS for biome 22
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set JUNGLE_EDGE for biome 23
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set WATER for biome 24
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ROCK_SHORE for biome 25
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SHORE for biome 26
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set BIRCH for biome 27
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set BIRCH_HILLS for biome 28
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set DENSE_FOREST for biome 29
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SNOW_PINES for biome 30
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SNOW_PINES_HILLS for biome 31
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MEGA_TAIGA for biome 32
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MEGA_TAIGA_HILLS for biome 33
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MOUNTAINS_ALL for biome 34
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SAVANNA for biome 35
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set PLATEAU_SAVANNA for biome 36
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MESA for biome 37
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set PLATEAU_MESA_TREES for biome 38
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set PLATEAU_MESA for biome 39
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set END_VOID for biome 127
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SUNFLOWERS for biome 129
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set DESERT for biome 130
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MOUNTAINS_SNOW_CAPS for biome 131
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set FOREST_FLOWERS for biome 132
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set PINES_HILLS for biome 133
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SWAMP_HILLS for biome 134
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ICE_SPIKES for biome 140
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set JUNGLE_CLIFFS for biome 149
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set JUNGLE_EDGE_HILLS for biome 151
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set TALL_BIRCH for biome 155
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set TALL_BIRCH_HILLS for biome 156
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set DENSE_FOREST_HILLS for biome 157
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SNOW_PINES_HILLS for biome 158
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MEGA_SPRUCE for biome 160
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MEGA_SPRUCE_HILLS for biome 161
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set MOUNTAINS_SNOW_CAPS for biome 162
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SAVANNA_CLIFFS for biome 163
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set PLATEAU_SAVANNA_M for biome 164
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set BRYCE for biome 165
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set PLATEAU_MESA_TREES_LOW for biome 166
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set PLATEAU_MESA_LOW for biome 167
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set bridge_coveredx for tile "bridge_coveredxTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set bridge_coveredxoccluded for tile "bridge_coveredxoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set bridge_coveredz for tile "bridge_coveredzTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set bridge_coveredzoccluded for tile "bridge_coveredzoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set bridge_openx for tile "bridge_openxTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set bridge_openxoccluded for tile "bridge_openxoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set bridge_openz for tile "bridge_openzTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set bridge_openzoccluded for tile "bridge_openzoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingfloor1 for tile "buildingfloor1Tile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingfloor1occluded for tile "buildingfloor1occludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingfloor2 for tile "buildingfloor2Tile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingfloor2occluded for tile "buildingfloor2occludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingfloor3 for tile "buildingfloor3Tile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingfloor3occluded for tile "buildingfloor3occludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingfloor4 for tile "buildingfloor4Tile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingfloor4occluded for tile "buildingfloor4occludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingtall for tile "buildingtallTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingtalloccluded for tile "buildingtalloccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set buildingtallroof for tile "buildingtallroofTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set END_ISLAND for tile "endIsland"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set END_ISLAND_PLANTS for tile "endIslandPlants"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set END_VOID for tile "endVoid"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set fountain for tile "fountainTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set fountainoccluded for tile "fountainoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set highwayintersection for tile "highwayintersectionTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set highwayintersectionoccluded for tile "highwayintersectionoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set highwayx for tile "highwayxTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set highwayxoccluded for tile "highwayxoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set highwayz for tile "highwayzTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set highwayzoccluded for tile "highwayzoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set LAVA for tile "lava"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set LAVA_SHORE for tile "lavaShore"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE for tile "netherBridge"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE_END_X for tile "netherBridgeEndX"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE_END_Z for tile "netherBridgeEndZ"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE_GATE for tile "netherBridgeGate"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE_X for tile "netherBridgeX"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_BRIDGE_Z for tile "netherBridgeZ"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_FORT_STAIRS for tile "netherFortStairs"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_HALL for tile "netherHall"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_THRONE for tile "netherThrone"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_TOWER for tile "netherTower"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set NETHER_WALL for tile "netherWall"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set BUTCHERS_SHOP for tile "npcVillageButchersShop"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set CHURCH for tile "npcVillageChurch"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set FARMLAND_LARGE for tile "npcVillageFarmlandLarge"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set FARMLAND_SMALL for tile "npcVillageFarmlandSmall"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set HUT for tile "npcVillageHut"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set L-HOUSE for tile "npcVillageLHouse"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set LIBRARY for tile "npcVillageLibrary"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set HOUSE_SMALL for tile "npcVillageSmallHouse"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set SMITHY for tile "npcVillageSmithy"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set VILLAGE_TORCH for tile "npcVillageTorch"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set WELL for tile "npcVillageWell"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set park for tile "parkTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set parkoccluded for tile "parkoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ruinfloor1 for tile "ruinfloor1Tile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ruinfloor1occluded for tile "ruinfloor1occludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ruinfloor2 for tile "ruinfloor2Tile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ruinfloor2occluded for tile "ruinfloor2occludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ruinfloor3 for tile "ruinfloor3Tile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ruinfloor3occluded for tile "ruinfloor3occludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ruinfloor4 for tile "ruinfloor4Tile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set ruinfloor4occluded for tile "ruinfloor4occludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set street for tile "streetTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set streetoccluded for tile "streetoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set trainrampleft for tile "trainrampleftTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set trainrampleftoccluded for tile "trainrampleftoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set trainrampright for tile "trainramprightTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set trainramprightoccluded for tile "trainramprightoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set trainstationopen for tile "trainstationopenTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set trainstationopenoccluded for tile "trainstationopenoccludedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set trainstationroofed for tile "trainstationroofedTile"
[22:31:45] [main/INFO] [antiqueatlas]: Registered texture set trainstationroofedoccluded for tile "trainstationroofedoccludedTile"
[22:31:45] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null
[22:31:45] [main/INFO] [STDOUT]: [com.targren.aactadapter.AACTAdapter:preInit:20]: AACTAdapter is loading!
[22:31:45] [Thread-3/INFO] [FML]: Using alternative sync timing : 200 frames of Display.update took 3459658696 nanos
[22:31:45] [main/INFO] [FML]: Applying holder lookups
[22:31:45] [main/INFO] [FML]: Holder lookups applied
[22:31:45] [main/INFO] [FML]: Applying holder lookups
[22:31:45] [main/INFO] [FML]: Holder lookups applied
[22:31:45] [main/INFO] [FML]: Applying holder lookups
[22:31:45] [main/INFO] [FML]: Holder lookups applied
[22:31:45] [main/INFO] [FML]: Applying holder lookups
[22:31:45] [main/INFO] [FML]: Holder lookups applied
[22:31:45] [main/INFO] [FML]: Injecting itemstacks
[22:31:45] [main/INFO] [FML]: Itemstack injection complete
[22:31:46] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Starting up SoundSystem...
[22:31:46] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: Initializing LWJGL OpenAL
[22:31:46] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[22:31:46] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: OpenAL initialized.
[22:31:46] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Sound engine started
[22:31:48] [main/INFO] [FML]: Max texture size: 16384
[22:31:49] [main/INFO] [net.minecraft.client.renderer.texture.TextureMap]: Created: 512x512 textures-atlas
[22:31:51] [main/INFO] [STDOUT]: [stanhebben.zenscript.parser.expression.ParsedExpressionFunction:compile:34]: Known predicted function type: ZenTypeNative: crafttweaker.events.IEventHandler
[22:31:51] [main/INFO] [FML]: Applying holder lookups
[22:31:51] [main/INFO] [FML]: Holder lookups applied
[22:31:51] [main/INFO] [antiquecities]: antique cities, initializing
[22:31:51] [main/INFO] [FML]: Injecting itemstacks
[22:31:51] [main/INFO] [FML]: Itemstack injection complete
[22:31:51] [main/INFO] [geolosys]: ingotYellorium has not been added already. Smelting has been skipped.
[22:31:51] [main/INFO] [geolosys]: ingotOsmium has not been added already. Smelting has been skipped.
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:coal_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:iron_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:lapis_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:gold_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:redstone_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:diamond_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:emerald_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:tin_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:nickel_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:silver_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:lead_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:copper_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry gravelores:aluminum_gravel_ore is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry nex:ore_quartz:0 is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry nex:ore_quartz:1 is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry nex:ore_quartz:2 is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/ERROR] [geolosys]: Entry nex:ore_quartz:3 is not valid. Reason: ore swap blacklist block does not exist
[22:31:51] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 18 mods
[22:31:51] [main/WARN] [net.minecraft.client.settings.GameSettings]: Skipping bad option: lastServer:
[22:31:51] [main/INFO] [com.mojang.text2speech.NarratorWindows]: Narrator library for x64 successfully loaded
[22:31:51] [main/INFO] [antiqueatlas]: Saving marker config
[22:31:59] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Starting integrated minecraft server version 1.12.2
[22:31:59] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Generating keypair
[22:32:00] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[22:32:00] [Server thread/INFO] [FML]: Applying holder lookups
[22:32:00] [Server thread/INFO] [FML]: Holder lookups applied
[22:32:00] [Server thread/INFO] [FML]: Loading dimension 0 (geolosys fun) (net.minecraft.server.integrated.IntegratedServer@71278605)
[22:32:00] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 488 advancements
[22:32:00] [Server thread/INFO] [FML]: Loading dimension 111 (geolosys fun) (net.minecraft.server.integrated.IntegratedServer@71278605)
[22:32:00] [Server thread/INFO] [FML]: Loading dimension 1 (geolosys fun) (net.minecraft.server.integrated.IntegratedServer@71278605)
[22:32:00] [Server thread/INFO] [FML]: Loading dimension -1 (geolosys fun) (net.minecraft.server.integrated.IntegratedServer@71278605)
[22:32:00] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing start region for level 0
[22:32:01] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 35%
[22:32:02] [Server thread/INFO] [mcjty.lib.varia.Logging]: Preparing all world data
[22:32:02] [Server thread/INFO] [FML]: Unloading dimension -1
[22:32:02] [Server thread/INFO] [FML]: Unloading dimension 1
[22:32:02] [Server thread/INFO] [FML]: Unloading dimension 111
[22:32:02] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Changing view distance to 16, from 10
[22:32:03] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[22:32:03] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[22:32:03] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 18 mods : minecraft@1.12.2,lostcities@2.0.10,clienttweaks@3.1.8,ctgui@1.0.0,FML@8.0.99.99,crafttweakerjei@2.0.2,geolosys@2.0.0,antiqueatlasoverlay@1.2,ding@1.0.1,crafttweaker@4.1.9,antiquecities@1.0,mcjtylib_ng@3.0.2,resourceloader@1.5.3,forge@14.23.4.2705,aactadapter@1.12.2-0.0.1,mcp@9.42,antiqueatlas@4.4.9,mindshaft@0.5
[22:32:03] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[22:32:03] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[22:32:03] [Server thread/INFO] [net.minecraft.server.management.PlayerList]: esotericist[local:E:3a1ab091] logged in with entity id 285 at (-52.27949709261164, 70.0, 307.25248204127826)
[22:32:03] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: esotericist joined the game
[22:32:03] [Server thread/INFO] [antiqueatlas]: Sent custom biome data to player esotericist
[22:32:03] [Server thread/INFO] [antiqueatlas]: Sent markers data #-1 to player esotericist
[22:32:03] [Server thread/INFO] [antiqueatlas]: Sending dimension #0
[22:32:03] [Server thread/INFO] [antiqueatlas]: Sent dimension #0 (12 tiles)
[22:32:03] [Server thread/INFO] [antiqueatlas]: Sent Atlas #0 data to player esotericist
[22:32:03] [Server thread/INFO] [antiqueatlas]: Sent markers data #0 to player esotericist
[22:32:05] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Saving and pausing game...
[22:32:05] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'geolosys fun'/overworld
[22:32:05] [Server thread/INFO] [antiqueatlas]: Saving local markers data to NBT
[22:32:05] [main/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] ERROR: [crafttweaker]: Error executing {[0:crafttweaker]: antiqueatlas.zs}: Bad local variable type\nException Details:\n Location:\n ZenClass0.handle(Lcrafttweaker/api/event/PlayerInteractEvent;)V @369: aload\n Reason:\n Type top (current frame, locals[21]) is not assignable to reference type\n Current Frame:\n bci: @369\n flags: { }\n locals: { 'ZenClass0', 'crafttweaker/api/event/PlayerInteractEvent', top, '[Lcrafttweaker/api/item/IItemStack;', top, integer, top, integer, top, top, double, double_2nd, top, top, double, double_2nd, top, top, integer }\n stack: { }\n Bytecode:\n 0x0000000: 120f 1210 b800 162b b900 1c01 00b9 0022\n 0x0000010: 0100 b900 2802 0099 023e 1229 bd00 2b59\n 0x0000020: 122c 122e 122c b800 1653 5912 2f12 2e12\n 0x0000030: 2fb8 0016 5359 1230 122e 1230 b800 1653\n 0x0000040: 5912 3112 2e12 31b8 0016 5359 1232 122e\n 0x0000050: 1232 b800 1653 5912 3312 2e12 33b8 0016\n 0x0000060: 5359 1234 122e 1234 b800 1653 5912 3512\n 0x0000070: 3712 2cb8 0016 5359 1238 1237 122f b800\n 0x0000080: 1653 5912 3912 3712 30b8 0016 5359 123a\n 0x0000090: 1237 1231 b800 1653 5912 3b12 3712 32b8\n 0x00000a0: 0016 5359 123c 1237 1233 b800 1653 5912\n 0x00000b0: 3d12 3712 34b8 0016 5359 123e 1237 1235\n 0x00000c0: b800 1653 5912 3f12 3712 38b8 0016 5359\n 0x00000d0: 1240 1237 1239 b800 1653 5912 4112 3712\n 0x00000e0: 3ab8 0016 534e 0336 052b b900 4701 00b9\n 0x00000f0: 004d 0100 0482 9901 5f2b b900 1c01 00b9\n 0x0000100: 0022 0100 b900 5101 0036 072b b900 1c01\n 0x0000110: 00b9 0057 0100 390a 2bb9 001c 0100 b900\n 0x0000120: 5a01 0039 0e2d 0336 1259 be15 12a4 0035\n 0x0000130: 5915 1232 3a13 1913 b900 5e01 002b b900\n 0x0000140: 6101 00b9 0066 0200 9900 1404 3605 1913\n 0x0000150: b900 6a01 003a 1519 15b8 0070 8412 01a7\n 0x0000160: ffca 5715 0504 9f00 0703 a700 0404 9900\n 0x0000170: 5319 15b8 0070 2bb9 0047 0100 0315 0712\n 0x0000180: 722b b900 6101 00b9 0073 0100 180a 180e\n 0x0000190: b800 792b b900 1c01 00bb 007b 59b7 007c\n 0x00001a0: 2bb9 0061 0100 b900 7301 00b6 0080 1282\n 0x00001b0: b600 80b6 0085 b900 8a02 002b b900 8f01\n 0x00001c0: 0012 9112 2cb8 0016 b900 5e01 002b b900\n 0x00001d0: 6101 00b9 0066 0200 9900 332b b900 4701\n 0x00001e0: 0003 1507 1293 2bb9 0061 0100 b900 7301\n 0x00001f0: 0018 0a18 0eb8 0079 2bb9 001c 0100 1295\n 0x0000200: b900 8a02 002b b900 8f01 0012 9712 2cb8\n 0x0000210: 0016 b900 5e01 002b b900 6101 00b9 0066\n 0x0000220: 0200 9900 332b b900 4701 0003 1507 1272\n 0x0000230: 2bb9 0061 0100 b900 7301 0018 0a18 0eb8\n 0x0000240: 0079 2bb9 001c 0100 1295 b900 8a02 002b\n 0x0000250: b900 8f01 00b1 \n Stackmap Table:\n full_frame(@297,{Object[#2],Object[#67],Top,Object[#153],Top,Integer,Top,Integer,Top,Top,Double,Top,Top,Double,Top,Top,Integer},{Object[#153]})\n full_frame(@348,{Object[#2],Object[#67],Top,Object[#153],Top,Integer,Top,Integer,Top,Top,Double,Top,Top,Double,Top,Top,Integer,Object[#43]},{Object[#153]})\n full_frame(@354,{Object[#2],Object[#67],Top,Object[#153],Top,Integer,Top,Integer,Top,Top,Double,Top,Top,Double,Top,Top,Integer},{Object[#153]})\n same_frame(@365)\n same_locals_1_stack_item_frame(@366,Integer)\n same_frame_extended(@449)\n same_frame_extended(@523)\n full_frame(@597,{Object[#2],Object[#67]},{})\n
[22:32:06] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Saving and pausing game...
[22:32:06] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'geolosys fun'/overworld
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment