lethinh
Members-
Posts
191 -
Joined
-
Last visited
Everything posted by lethinh
-
Hi. I'm creating mods that with access transformers but it doesn't work (doesn't change modifier from private to public). Here is my build.gradle file: buildscript { repositories { jcenter() maven { url = "http://files.minecraftforge.net/maven" } } dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT' } } apply plugin: 'net.minecraftforge.gradle.forge' //Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. version = "1.11-1.0.0" group = "vn.lethinh.hptweaks" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "hptweaks" sourceCompatibility = targetCompatibility = "1.8" // Need this here so eclipse task generates correctly. compileJava { sourceCompatibility = targetCompatibility = "1.8" } minecraft { version = "1.11-13.19.1.2199" runDir = "run" // the mappings can be changed at any time, and must be in the following format. // snapshot_YYYYMMDD snapshot are built nightly. // stable_# stables are built at the discretion of the MCP team. // Use non-default mappings at your own risk. they may not always work. // simply re-run your setup task after changing the mappings to update your workspace. mappings = "snapshot_20161220" // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. useDepAts = true } dependencies { // you may put jars on which you depend on in ./libs // or you may define them like so.. //compile "some.group:artifact:version:classifier" //compile "some.group:artifact:version" // real examples //compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env //compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env // the 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime. //provided 'com.mod-buildcraft:buildcraft:6.0.8:dev' // the deobf configurations: 'deobfCompile' and 'deobfProvided' are the same as the normal compile and provided, // except that these dependencies get remapped to your current MCP mappings //deobfCompile 'com.mod-buildcraft:buildcraft:6.0.8:dev' //deobfProvided 'com.mod-buildcraft:buildcraft:6.0.8:dev' // for more info... // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html // http://www.gradle.org/docs/current/userguide/dependency_management.html } processResources { // this will ensure that this task is redone when the versions change. inputs.property "version", project.version inputs.property "mcversion", project.minecraft.version // replace stuff in mcmod.info, nothing else from(sourceSets.main.resources.srcDirs) { include 'mcmod.info' // replace version and mcversion expand 'version':project.version, 'mcversion':project.minecraft.version } // copy everything else except the mcmod.info from(sourceSets.main.resources.srcDirs) { exclude 'mcmod.info' } rename '(.+_at.cfg)', 'META-INF/$1' } jar { manifest { attributes 'FMLAT': 'hptweaks_at.cfg' } } task deobfJar(type: Jar) { from sourceSets.main.output classifier = 'deobf' manifest { attributes 'FMLAT': 'hptweaks_at.cfg' } } artifacts { archives deobfJar } idea { module { inheritOutputDirs = true } } My hptweaks_at.cfg file: # High Passive Tweaks -- Access Transformer # GuiContainer public net.minecraft.client.gui.inventory.GuiContainer field_146999_f # xSize public net.minecraft.client.gui.inventory.GuiContainer field_147000_g # ySize #GlStateManager public net.minecraft.client.renderer.GlStateManager$BooleanState public net.minecraft.client.renderer.GlStateManager$BooleanState field_179202_a # capability public net.minecraft.client.renderer.GlStateManager field_179160_a # alphaState public net.minecraft.client.renderer.GlStateManager field_179174_p # textureState public net.minecraft.client.renderer.GlStateManager field_179162_o # activeTextureUnit public net.minecraft.client.renderer.GlStateManager field_179156_d # colorMaterialState public net.minecraft.client.renderer.GlStateManager field_179157_e # blendState public net.minecraft.client.renderer.GlStateManager field_179155_g # fogState public net.minecraft.client.renderer.GlStateManager field_179167_h # cullState public net.minecraft.client.renderer.GlStateManager field_179168_i # polygonOffsetState public net.minecraft.client.renderer.GlStateManager field_179165_j # colorLogicState public net.minecraft.client.renderer.GlStateManager field_179163_l # clearState public net.minecraft.client.renderer.GlStateManager field_179171_s # colorMaskState public net.minecraft.client.renderer.GlStateManager field_179170_t # colorState public net.minecraft.client.renderer.GlStateManager$TexGenCoord public net.minecraft.client.renderer.GlStateManager field_179067_a # textureGen public net.minecraft.client.renderer.GlStateManager field_179065_b # coord public net.minecraft.client.renderer.GlStateManager field_179066_c # param public net.minecraft.client.renderer.GlStateManager field_190627_av # currentState public net.minecraft.client.renderer.GlStateManager field_179166_k # texGenState public net.minecraft.client.renderer.GlStateManager field_179154_f # depthState public net.minecraft.client.renderer.GlStateManager field_179172_r # rescaleNormalState public net.minecraft.client.renderer.GlStateManager field_179161_n # normalizeState public net.minecraft.client.renderer.GlStateManager field_179159_c # lightState My hptweaks_at.cfg file is in src/main/resources. Does anyone know to fix this?
-
That the itemblock model. So I don't need to register the item model. And the "neutronium" texture works but the "infinity" texture doesn't work. I have put the block texture in "avaritia:blocks/block_neutronium" and in "avaritia:blocks/block_infinity". This is my model file (in the blockstates folder): { "forge_marker": 1, "defaults": { "transform": "forge:default-block", "model": "cube_all" }, "variants": { "type": { "neutronium": { "textures": { "all": "avaritia:blocks/block_neutronium" } }, "infinity": { "textures": { "all": "avaritia:blocks/block_infinity" } } } } }
-
That the itemblock model. So I don't need to register the item model. And the "neutronium" texture works but the "infinity" texture doesn't work. I have put the block texture in "avaritia:blocks/block_neutronium" and in "avaritia:blocks/block_infinity". This is my model file (in the blockstates folder): { "forge_marker": 1, "defaults": { "transform": "forge:default-block", "model": "cube_all" }, "variants": { "type": { "neutronium": { "textures": { "all": "avaritia:blocks/block_neutronium" } }, "infinity": { "textures": { "all": "avaritia:blocks/block_infinity" } } } } }
-
Hello, guy. I'm having trouble when using the metadata block. It just register the first model and texture but the second doesn't. Here is my log (it doesn't crash): [20:33:14] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. [20:33:15] [main/INFO] [FML/]: Forge Mod Loader version 12.18.3.2202 for Minecraft 1.10.2 loading [20:33:15] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_111, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jdk1.8.0_111\jre [20:33:15] [main/DEBUG] [FML/]: Java classpath at launch is C:\Program Files\Java\jdk1.8.0_111\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_111\jre\lib\rt.jar;D:\forge-1.10.2-12.18.3.2202-mdk\out\production\forge-1.10.2-12.18.3.2202-mdk_main;C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\deobf\mezz\jei\jei_1.10.2\3.14.2.401\jei_1.10.2-3.14.2.401.jar;C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\deobf\slimeknights\mantle\Mantle\1.10.2-1.1.3.201\Mantle-1.10.2-1.1.3.201.jar;C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\deobf\slimeknights\TConstruct\1.10.2-2.6.1.474\TConstruct-1.10.2-2.6.1.474.jar;C:\Users\Admin\.gradle\caches\minecraft\net\minecraftforge\forge\1.10.2-12.18.3.2202\snapshot\20161111\forgeSrc-1.10.2-12.18.3.2202.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.9.8\c9609760e050cd7c369292252552c0cc81c54331\realms-1.9.8.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.0.12_mojang\ba787e741efdc425fc5d2ea654b57c15fba27efa\fastutil-7.0.12_mojang.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar;C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar;C:\Users\Admin\.gradle\caches\minecraft\net\minecraftforge\forge\1.10.2-12.18.3.2202\start;C:\Program Files (x86)\JetBrains\IntelliJ IDEA 2016.3.2\lib\idea_rt.jar [20:33:15] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jdk1.8.0_111\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Java\jdk1.8.0_111\bin\;C:\Users\Admin\AppData\Local\Programs\Python\Python36-32\Scripts\;C:\Users\Admin\AppData\Local\Programs\Python\Python36-32\;.;C:/Users/Admin/.gradle/caches/minecraft/net/minecraft/natives/1.10.2 [20:33:15] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [20:33:15] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin [20:33:15] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers [20:33:15] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin [20:33:15] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin [20:33:15] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin [20:33:15] [main/DEBUG] [FML/]: All fundamental core mods are successfully located [20:33:15] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to D:\forge-1.10.2-12.18.3.2202-mdk\run\. [20:33:15] [main/DEBUG] [FML/]: Discovering coremods [20:33:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [20:33:15] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [20:33:15] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [20:33:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [20:33:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [20:33:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [20:33:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [20:33:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [20:33:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [20:33:15] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers [20:33:15] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer [20:33:15] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer [20:33:15] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer [20:33:15] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer [20:33:15] [main/DEBUG] [FML/]: Injection complete [20:33:15] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} [20:33:15] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin [20:33:15] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [20:33:15] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\Admin\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20161111\1.10.2\srgs\srg-mcp.srg with 32364 records [20:33:19] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing [20:33:19] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully [20:33:19] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [20:33:19] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers [20:33:19] [main/DEBUG] [FML/]: Injection complete [20:33:19] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} [20:33:19] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin [20:33:19] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully [20:33:19] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [20:33:19] [main/DEBUG] [FML/]: Loaded 195 rules from AccessTransformer config file forge_at.cfg [20:33:19] [main/DEBUG] [FML/]: Loaded 33 rules from AccessTransformer mod jar file C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\deobf\slimeknights\TConstruct\1.10.2-2.6.1.474\TConstruct-1.10.2-2.6.1.474.jar!META-INF/tconstruct_at.cfg [20:33:19] [main/DEBUG] [FML/]: Loaded 7 rules from AccessTransformer mod jar file C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\deobf\mezz\jei\jei_1.10.2\3.14.2.401\jei_1.10.2-3.14.2.401.jar!META-INF/jei_at.cfg [20:33:19] [main/DEBUG] [FML/]: Loaded 8 rules from AccessTransformer mod jar file C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\deobf\slimeknights\mantle\Mantle\1.10.2-1.1.3.201\Mantle-1.10.2-1.1.3.201.jar!META-INF/mantle_at.cfg [20:33:19] [main/DEBUG] [FML/]: Validating minecraft [20:33:20] [main/DEBUG] [FML/]: Minecraft validated, launching... [20:33:20] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [20:33:21] [main/DEBUG] [GradleStart/]: Reading CSV file: C:\Users\Admin\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20161111\fields.csv [20:33:21] [main/DEBUG] [GradleStart/]: Reading CSV file: C:\Users\Admin\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20161111\methods.csv [20:33:21] [main/INFO] [GradleStart/]: Remapping AccessTransformer rules... [20:33:21] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [20:33:21] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [20:33:21] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} [20:33:28] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot [20:33:28] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created [20:33:30] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0,002s [20:33:30] [Client thread/INFO] [FML/]: MinecraftForge v12.18.3.2202 Initialized [20:33:30] [Client thread/INFO] [FML/]: Replaced 231 ore recipes [20:33:30] [Client thread/DEBUG] [FML/]: File D:\forge-1.10.2-12.18.3.2202-mdk\run\config\injectedDependencies.json not found. No dependencies injected [20:33:30] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] [20:33:30] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\charsets.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\deploy.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\access-bridge-64.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\cldrdata.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\dnsns.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\jaccess.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\jfxrt.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\localedata.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\nashorn.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\sunec.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\sunjce_provider.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\sunmscapi.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\sunpkcs11.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\ext\zipfs.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\javaws.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\jce.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\jfr.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\jfxswt.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\jsse.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\management-agent.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\plugin.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\resources.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Program Files\Java\jdk1.8.0_111\jre\lib\rt.jar [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at D:\forge-1.10.2-12.18.3.2202-mdk\out\production\forge-1.10.2-12.18.3.2202-mdk_main, examining for mod candidates [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\deobf\mezz\jei\jei_1.10.2\3.14.2.401\jei_1.10.2-3.14.2.401.jar, examining for mod candidates [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\deobf\slimeknights\mantle\Mantle\1.10.2-1.1.3.201\Mantle-1.10.2-1.1.3.201.jar, examining for mod candidates [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Admin\.gradle\caches\minecraft\deobfedDeps\deobf\slimeknights\TConstruct\1.10.2-2.6.1.474\TConstruct-1.10.2-2.6.1.474.jar, examining for mod candidates [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Admin\.gradle\caches\minecraft\net\minecraftforge\forge\1.10.2-12.18.3.2202\snapshot\20161111\forgeSrc-1.10.2-12.18.3.2202.jar, examining for mod candidates [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar, examining for mod candidates [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.9.8\c9609760e050cd7c369292252552c0cc81c54331\realms-1.9.8.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.0.12_mojang\ba787e741efdc425fc5d2ea654b57c15fba27efa\fastutil-7.0.12_mojang.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar, examining for mod candidates [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar [20:33:30] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Admin\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Admin\.gradle\caches\minecraft\net\minecraftforge\forge\1.10.2-12.18.3.2202\start, examining for mod candidates [20:33:30] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Program Files (x86)\JetBrains\IntelliJ IDEA 2016.3.2\lib\idea_rt.jar, examining for mod candidates [20:33:30] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully [20:33:30] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer [20:33:30] [Client thread/INFO] [FML/]: Searching D:\forge-1.10.2-12.18.3.2202-mdk\run\mods for mods [20:33:30] [Client thread/DEBUG] [FML/]: Examining directory forge-1.10.2-12.18.3.2202-mdk_main for potential mods [20:33:30] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory forge-1.10.2-12.18.3.2202-mdk_main [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package assets [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package assets/avaritia [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package assets/avaritia/blockstates [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package assets/avaritia/lang [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package assets/avaritia/models [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package assets/avaritia/models/item [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package assets/avaritia/textures [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package assets/avaritia/textures/blocks [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package assets/avaritia/textures/items [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package com [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package com/sathern [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package com/sathern/avaritia [20:33:30] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.sathern.avaritia.Avaritia) - loading [20:33:30] [Client thread/TRACE] [avaritia/]: Parsed dependency info : [] [] [] [20:33:30] [Client thread/DEBUG] [avaritia/]: Attempting to load the file version.properties from forge-1.10.2-12.18.3.2202-mdk_main to locate a version number for avaritia [20:33:30] [Client thread/WARN] [avaritia/]: Mod avaritia is missing the required element 'version' and no fallback can be found. Substituting '1.0'. [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package com/sathern/avaritia/block [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package com/sathern/avaritia/compat [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package com/sathern/avaritia/compat/ticon [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package com/sathern/avaritia/item [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package com/sathern/avaritia/lib [20:33:30] [Client thread/TRACE] [FML/]: Recursing into package com/sathern/avaritia/utils [20:33:30] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods [20:33:30] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file [20:33:30] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods [20:33:30] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file [20:33:30] [Client thread/DEBUG] [FML/]: Examining file jei_1.10.2-3.14.2.401.jar for potential mods [20:33:30] [Client thread/TRACE] [FML/]: Located mcmod.info file in file jei_1.10.2-3.14.2.401.jar [20:33:30] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (mezz.jei.JustEnoughItems) - loading [20:33:30] [Client thread/WARN] [FML/]: **************************************** [20:33:30] [Client thread/WARN] [FML/]: * The modid JEI is not the same as it's lowercase version. Lowercasing will be enforced in 1.11 [20:33:30] [Client thread/WARN] [FML/]: * at net.minecraftforge.fml.common.FMLModContainer.sanityCheckModId(FMLModContainer.java:143) [20:33:30] [Client thread/WARN] [FML/]: * at net.minecraftforge.fml.common.FMLModContainer.<init>(FMLModContainer.java:128) [20:33:30] [Client thread/WARN] [FML/]: * at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) [20:33:30] [Client thread/WARN] [FML/]: * at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) [20:33:30] [Client thread/WARN] [FML/]: * at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) [20:33:30] [Client thread/WARN] [FML/]: * at java.lang.reflect.Constructor.newInstance(Constructor.java:423)... [20:33:30] [Client thread/WARN] [FML/]: **************************************** [20:33:30] [Client thread/TRACE] [JEI/]: Parsed dependency info : [Forge@[12.18.1.2053,)] [Forge@[12.18.1.2053,)] [] [20:33:31] [Client thread/DEBUG] [FML/]: Examining file Mantle-1.10.2-1.1.3.201.jar for potential mods [20:33:31] [Client thread/TRACE] [FML/]: Located mcmod.info file in file Mantle-1.10.2-1.1.3.201.jar [20:33:31] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (slimeknights.mantle.Mantle) - loading [20:33:31] [Client thread/TRACE] [mantle/]: Parsed dependency info : [Forge@[12.18.1.2011,)] [Forge@[12.18.1.2011,)] [] [20:33:31] [Client thread/DEBUG] [FML/]: Examining file TConstruct-1.10.2-2.6.1.474.jar for potential mods [20:33:31] [Client thread/TRACE] [FML/]: Located mcmod.info file in file TConstruct-1.10.2-2.6.1.474.jar [20:33:31] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (slimeknights.tconstruct.TConstruct) - loading [20:33:31] [Client thread/TRACE] [tconstruct/]: Parsed dependency info : [mantle@[1.10.2-1.1.3,), Forge@[12.18.2.2115,)] [Forge@[12.18.2.2115,), mantle@[1.10.2-1.1.3,), JEI@[3.13.6.387,)] [] [20:33:31] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.10.2-12.18.3.2202.jar for potential mods [20:33:31] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.10.2-12.18.3.2202.jar appears to be missing an mcmod.info file [20:33:32] [Client thread/DEBUG] [FML/]: Examining file jsr305-3.0.1.jar for potential mods [20:33:32] [Client thread/DEBUG] [FML/]: The mod container jsr305-3.0.1.jar appears to be missing an mcmod.info file [20:33:32] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods [20:33:32] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file [20:33:32] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods [20:33:32] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file [20:33:32] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods [20:33:32] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start [20:33:32] [Client thread/TRACE] [FML/]: Recursing into package net [20:33:32] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge [20:33:32] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle [20:33:32] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle/tweakers [20:33:32] [Client thread/DEBUG] [FML/]: Examining file idea_rt.jar for potential mods [20:33:32] [Client thread/DEBUG] [FML/]: The mod container idea_rt.jar appears to be missing an mcmod.info file [20:33:32] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 7 mods to load [20:33:32] [Client thread/DEBUG] [FML/]: Found API mezz.jei.api (owned by JEI providing JustEnoughItemsAPI) embedded in JEI [20:33:32] [Client thread/DEBUG] [FML/]: Creating API container dummy for API JustEnoughItemsAPI: owner: JEI, dependents: [] [20:33:32] [Client thread/TRACE] [FML/]: Received a system property request '' [20:33:32] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods [20:33:32] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods [20:33:32] [Client thread/DEBUG] [avaritia/]: Enabling mod avaritia [20:33:32] [Client thread/DEBUG] [JEI/]: Enabling mod JEI [20:33:32] [Client thread/DEBUG] [mantle/]: Enabling mod mantle [20:33:32] [Client thread/DEBUG] [tconstruct/]: Enabling mod tconstruct [20:33:32] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied [20:33:32] [Client thread/TRACE] [FML/]: All mod requirements are satisfied [20:33:32] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list [20:33:32] [Client thread/TRACE] [FML/]: Mod sorting completed successfully [20:33:32] [Client thread/DEBUG] [FML/]: Mod sorting data [20:33:32] [Client thread/DEBUG] [FML/]: avaritia(Avaritia:1.0): forge-1.10.2-12.18.3.2202-mdk_main () [20:33:32] [Client thread/DEBUG] [FML/]: JEI(Just Enough Items:3.14.2.401): jei_1.10.2-3.14.2.401.jar (required-after:Forge@[12.18.1.2053,) [20:33:32] [Client thread/DEBUG] [FML/]: mantle(Mantle:1.10.2-1.1.3.201): Mantle-1.10.2-1.1.3.201.jar (required-after:Forge@[12.18.1.2011,)) [20:33:32] [Client thread/DEBUG] [FML/]: tconstruct(Tinkers' Construct:1.10.2-2.6.1.474): TConstruct-1.10.2-2.6.1.474.jar (required-after:Forge@[12.18.2.2115,);required-after:mantle@[1.10.2-1.1.3,);after:JEI@[3.13.6.387,)) [20:33:32] [Client thread/DEBUG] [FML/]: JustEnoughItemsAPI(API: JustEnoughItemsAPI:4.10.1): jei_1.10.2-3.14.2.401.jar () [20:33:33] [Client thread/DEBUG] [FML/]: Loading @Config anotation data [20:33:33] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp [20:33:33] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp [20:33:33] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0,004s [20:33:33] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML [20:33:33] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists [20:33:33] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection [20:33:33] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99) [20:33:33] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, avaritia, JEI, mantle, tconstruct] at CLIENT [20:33:33] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, avaritia, JEI, mantle, tconstruct] at SERVER [20:33:34] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML [20:33:34] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 1,457s [20:33:34] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge [20:33:34] [Client thread/DEBUG] [Forge/Forge]: Preloading CrashReport Classes [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$10 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$11 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$12 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$13 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$14 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$15 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$5 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$6 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$7 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$8 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$9 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderGlobal$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureAtlasSprite$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureManager$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$5 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$6 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$7 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$5 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/EntityTracker$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/player/InventoryPlayer$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/nbt/NBTTagCompound$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/nbt/NBTTagCompound$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/network/NetHandlerPlayServer$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/network/NetworkSystem$6 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/MinecraftServer$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/MinecraftServer$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/dedicated/DedicatedServer$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/dedicated/DedicatedServer$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/integrated/IntegratedServer$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/integrated/IntegratedServer$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/CommandBlockBaseLogic$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/CommandBlockBaseLogic$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/chunk/Chunk$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$10 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$2 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$3 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$4 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$5 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$6 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$7 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$8 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$9 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/client/SplashProgress$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/FMLCommonHandler$1 [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/ICrashCallable [20:33:34] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/Loader$3 [20:33:34] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed [20:33:34] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection [20:33:34] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (12.18.3.2202) [20:33:34] [Client thread/DEBUG] [FML/Forge]: Attempting to inject @Config classes into Forge for type INSTANCE [20:33:34] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge [20:33:34] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0,240s [20:33:34] [Client thread/TRACE] [avaritia/avaritia]: Sending event FMLConstructionEvent to mod avaritia [20:33:34] [Client thread/TRACE] [FML/avaritia]: Mod avaritia is using network checker : Accepting version 1.0 [20:33:34] [Client thread/TRACE] [FML/avaritia]: Testing mod avaritia to verify it accepts its own version in a remote connection [20:33:34] [Client thread/TRACE] [FML/avaritia]: The mod avaritia accepts its own version (1.0) [20:33:34] [Client thread/DEBUG] [FML/avaritia]: Attempting to inject @SidedProxy classes into avaritia [20:33:34] [Client thread/DEBUG] [FML/avaritia]: Attempting to inject @EventBusSubscriber classes into the eventbus for avaritia [20:33:34] [Client thread/DEBUG] [FML/avaritia]: Attempting to inject @Config classes into avaritia for type INSTANCE [20:33:34] [Client thread/TRACE] [avaritia/avaritia]: Sent event FMLConstructionEvent to mod avaritia [20:33:34] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Avaritia took 0,041s [20:33:34] [Client thread/TRACE] [JEI/JEI]: Sending event FMLConstructionEvent to mod JEI [20:33:34] [Client thread/TRACE] [FML/JEI]: Mod JEI is using network checker : Invoking method checkModLists [20:33:34] [Client thread/TRACE] [FML/JEI]: Testing mod JEI to verify it accepts its own version in a remote connection [20:33:34] [Client thread/TRACE] [FML/JEI]: The mod JEI accepts its own version (3.14.2.401) [20:33:34] [Client thread/DEBUG] [FML/JEI]: Attempting to inject @SidedProxy classes into JEI [20:33:34] [Client thread/DEBUG] [FML/JEI]: Attempting to inject @EventBusSubscriber classes into the eventbus for JEI [20:33:34] [Client thread/DEBUG] [FML/JEI]: Attempting to inject @Config classes into JEI for type INSTANCE [20:33:34] [Client thread/TRACE] [JEI/JEI]: Sent event FMLConstructionEvent to mod JEI [20:33:34] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Just Enough Items took 0,040s [20:33:34] [Client thread/TRACE] [mantle/mantle]: Sending event FMLConstructionEvent to mod mantle [20:33:34] [Client thread/DEBUG] [mantle/mantle]: Preloading CrashReport Classes [20:33:34] [Client thread/DEBUG] [mantle/mantle]: slimeknights/mantle/pulsar/internal/CrashHandler [20:33:34] [Client thread/TRACE] [FML/mantle]: Mod mantle is using network checker : Accepting version 1.10.2-1.1.3.201 [20:33:34] [Client thread/TRACE] [FML/mantle]: Testing mod mantle to verify it accepts its own version in a remote connection [20:33:34] [Client thread/TRACE] [FML/mantle]: The mod mantle accepts its own version (1.10.2-1.1.3.201) [20:33:34] [Client thread/DEBUG] [FML/mantle]: Attempting to inject @SidedProxy classes into mantle [20:33:34] [Client thread/DEBUG] [FML/mantle]: Attempting to inject @EventBusSubscriber classes into the eventbus for mantle [20:33:34] [Client thread/DEBUG] [FML/mantle]: Attempting to inject @Config classes into mantle for type INSTANCE [20:33:34] [Client thread/TRACE] [mantle/mantle]: Sent event FMLConstructionEvent to mod mantle [20:33:34] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Mantle took 0,013s [20:33:34] [Client thread/TRACE] [tconstruct/tconstruct]: Sending event FMLConstructionEvent to mod tconstruct [20:33:34] [Client thread/DEBUG] [Pulsar-tconstruct/tconstruct]: Attaching [PulseManager[tconstruct]] to event bus for container [FMLMod:tconstruct{1.10.2-2.6.1.474}] [20:33:35] [Client thread/INFO] [Pulsar-tconstruct/tconstruct]: Skipping Pulse chiselsandbitsIntegration; missing dependency: chiselsandbits [20:33:35] [Client thread/INFO] [Pulsar-tconstruct/tconstruct]: Skipping Pulse craftingtweaksIntegration; missing dependency: craftingtweaks [20:33:35] [Client thread/INFO] [Pulsar-tconstruct/tconstruct]: Skipping Pulse WailaIntegration; missing dependency: Waila [20:33:35] [Client thread/INFO] [Pulsar-tconstruct/tconstruct]: Skipping Pulse theoneprobeIntegration; missing dependency: theoneprobe [20:33:35] [Client thread/INFO] [tconstruct/tconstruct]: Preparing to take over the world [20:33:35] [Client thread/TRACE] [FML/tconstruct]: Mod tconstruct is using network checker : Invoking method matchModVersions [20:33:35] [Client thread/TRACE] [FML/tconstruct]: Testing mod tconstruct to verify it accepts its own version in a remote connection [20:33:35] [Client thread/TRACE] [FML/tconstruct]: The mod tconstruct accepts its own version (1.10.2-2.6.1.474) [20:33:35] [Client thread/DEBUG] [FML/tconstruct]: Attempting to inject @SidedProxy classes into tconstruct [20:33:35] [Client thread/DEBUG] [FML/tconstruct]: Attempting to inject @EventBusSubscriber classes into the eventbus for tconstruct [20:33:35] [Client thread/DEBUG] [FML/tconstruct]: Found @EventBusSubscriber class slimeknights.tconstruct.tools.ranged.RangedEvents [20:33:35] [Client thread/DEBUG] [FML/tconstruct]: Injected @EventBusSubscriber class slimeknights.tconstruct.tools.ranged.RangedEvents [20:33:35] [Client thread/DEBUG] [FML/tconstruct]: Found @EventBusSubscriber class slimeknights.tconstruct.tools.ranged.RangedRenderEvents [20:33:35] [Client thread/DEBUG] [FML/tconstruct]: Injected @EventBusSubscriber class slimeknights.tconstruct.tools.ranged.RangedRenderEvents [20:33:35] [Client thread/DEBUG] [FML/tconstruct]: Attempting to inject @Config classes into tconstruct for type INSTANCE [20:33:35] [Client thread/TRACE] [tconstruct/tconstruct]: Sent event FMLConstructionEvent to mod tconstruct [20:33:35] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Tinkers' Construct took 1,122s [20:33:35] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 2,917s [20:33:35] [Client thread/DEBUG] [FML/]: Mod signature data [20:33:35] [Client thread/DEBUG] [FML/]: Valid Signatures: [20:33:35] [Client thread/DEBUG] [FML/]: Missing Signatures: [20:33:35] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.19) minecraft.jar [20:33:35] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.10.2-12.18.3.2202.jar [20:33:35] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 12.18.3.2202) forgeSrc-1.10.2-12.18.3.2202.jar [20:33:35] [Client thread/DEBUG] [FML/]: avaritia (Avaritia 1.0) forge-1.10.2-12.18.3.2202-mdk_main [20:33:35] [Client thread/DEBUG] [FML/]: JEI (Just Enough Items 3.14.2.401) jei_1.10.2-3.14.2.401.jar [20:33:35] [Client thread/DEBUG] [FML/]: mantle (Mantle 1.10.2-1.1.3.201) Mantle-1.10.2-1.1.3.201.jar [20:33:35] [Client thread/DEBUG] [FML/]: tconstruct (Tinkers' Construct 1.10.2-2.6.1.474) TConstruct-1.10.2-2.6.1.474.jar [20:33:35] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,008s [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,017s [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,014s [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Avaritia took 0,008s [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Just Enough Items took 0,002s [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Mantle took 0,004s [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Tinkers' Construct took 0,008s [20:33:36] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0,073s [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0,074s [20:33:36] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0,135s [20:33:36] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one [20:33:36] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one [20:33:36] [Client thread/DEBUG] [Avaritia/]: Mod Avaritia is missing a pack.mcmeta file, substituting a dummy one [20:33:36] [Client thread/DEBUG] [Just Enough Items/]: Mod Just Enough Items is missing a pack.mcmeta file, substituting a dummy one [20:33:36] [Client thread/DEBUG] [Mantle/]: Mod Mantle is missing a pack.mcmeta file, substituting a dummy one [20:33:36] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations [20:33:36] [Client thread/INFO] [FML/]: Found 423 ObjectHolder annotations [20:33:36] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations [20:33:36] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations [20:33:36] [Client thread/INFO] [FML/]: Applying holder lookups [20:33:36] [Client thread/INFO] [FML/]: Holder lookups applied [20:33:36] [Client thread/INFO] [FML/]: Applying holder lookups [20:33:36] [Client thread/INFO] [FML/]: Holder lookups applied [20:33:36] [Client thread/INFO] [FML/]: Applying holder lookups [20:33:36] [Client thread/INFO] [FML/]: Holder lookups applied [20:33:36] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp [20:33:36] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0,001s [20:33:36] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML [20:33:36] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0,025s [20:33:36] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge [20:33:36] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 [20:33:36] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0,105s [20:33:36] [Client thread/TRACE] [avaritia/avaritia]: Sending event FMLPreInitializationEvent to mod avaritia [20:33:36] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [20:33:36] [Client thread/TRACE] [avaritia/avaritia]: Sent event FMLPreInitializationEvent to mod avaritia [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Avaritia took 0,317s [20:33:36] [Client thread/TRACE] [JEI/JEI]: Sending event FMLPreInitializationEvent to mod JEI [20:33:36] [Client thread/TRACE] [JEI/JEI]: Sent event FMLPreInitializationEvent to mod JEI [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Just Enough Items took 0,136s [20:33:36] [Client thread/TRACE] [mantle/mantle]: Sending event FMLPreInitializationEvent to mod mantle [20:33:36] [Client thread/INFO] [Mantle/mantle]: Started loading books... [20:33:36] [Client thread/INFO] [Mantle/mantle]: Book loading completed in 9.7048E-5 seconds. [20:33:36] [Client thread/DEBUG] [FML/mantle]: Bar Finished: Loading Resource - BookLoader took 0,001s [20:33:36] [Client thread/TRACE] [mantle/mantle]: Sent event FMLPreInitializationEvent to mod mantle [20:33:36] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Mantle took 0,064s [20:33:36] [Client thread/TRACE] [tconstruct/tconstruct]: Sending event FMLPreInitializationEvent to mod tconstruct [20:33:36] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - B3DLoader took 0,000s [20:33:36] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - OBJLoader took 0,000s [20:33:36] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0,000s [20:33:36] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0,000s [20:33:36] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0,000s [20:33:36] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0,000s [20:33:36] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - ToolModelLoader took 0,000s [20:33:36] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - MaterialModelLoader took 0,000s [20:33:36] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - ModifierModelLoader took 0,002s [20:33:37] [Client thread/TRACE] [FML/tconstruct]: Automatically registered mod tconstruct entity blueslime as tconstruct.blueslime [20:33:37] [Client thread/DEBUG] [FML/tconstruct]: Registering entity egg 'tconstruct.blueslime' for class slimeknights.tconstruct.world.entity.EntityBlueSlime [20:33:37] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - SlimeColorizer took 0,065s [20:33:37] [Client thread/TRACE] [FML/tconstruct]: Automatically registered mod tconstruct entity Indestructible Item as tconstruct.Indestructible Item [20:33:38] [Client thread/TRACE] [FML/tconstruct]: Automatically registered mod tconstruct entity arrow as tconstruct.arrow [20:33:38] [Client thread/TRACE] [FML/tconstruct]: Automatically registered mod tconstruct entity bolt as tconstruct.bolt [20:33:38] [Client thread/TRACE] [FML/tconstruct]: Automatically registered mod tconstruct entity shuriken as tconstruct.shuriken [20:33:38] [Client thread/TRACE] [FML/tconstruct]: Automatically registered mod tconstruct entity Fancy Item Frame as tconstruct.Fancy Item Frame [20:33:38] [Client thread/TRACE] [FML/tconstruct]: Automatically registered mod tconstruct entity Throwball as tconstruct.Throwball [20:33:39] [Client thread/TRACE] [tconstruct/tconstruct]: Sent event FMLPreInitializationEvent to mod tconstruct [20:33:39] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Tinkers' Construct took 2,427s [20:33:39] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 3,075s [20:33:39] [Client thread/INFO] [FML/]: Applying holder lookups [20:33:39] [Client thread/INFO] [FML/]: Holder lookups applied [20:33:39] [Client thread/INFO] [FML/]: Injecting itemstacks [20:33:39] [Client thread/INFO] [FML/]: Itemstack injection complete [20:33:39] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0,001s [20:33:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 2,786s [20:33:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,009s [20:33:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,004s [20:33:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0,012s [20:33:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0,011s [20:33:42] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0,003s [20:33:42] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0,007s [20:33:46] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3,830s [20:33:46] [Client thread/DEBUG] [FML/]: Item json isn't found for 'avaritia:resource_block#type=infinity', trying to load the variant from the blockstate json [20:33:46] [Client thread/DEBUG] [FML/]: Item json isn't found for 'avaritia:resource_block#type=neutronium', trying to load the variant from the blockstate json [20:33:46] [Client thread/DEBUG] [FML/]: Item json isn't found for 'forge:dynbucket#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick_cracked', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick_triangle', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=paver', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick_small', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=smooth', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick_square', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=creeper', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=rough', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick_fancy', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=tile', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=road', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=brick_square', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=smooth', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=paver', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=brick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=rough', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=brick_fancy', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=brick_cracked', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=road', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab2#half=bottom,type=brick_small', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab2#half=bottom,type=brick_triangle', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab2#half=bottom,type=creeper', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab2#half=bottom,type=tile', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick_cracked#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick_fancy#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick_small#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick_square#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick_triangle#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_creeper#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_paver#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_road#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_rough#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_smooth#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_tile#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:cast_custom#gem', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:cast_custom#nugget', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:cast_custom#plate', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:cast_custom#gear', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:cast_custom#ingot', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:casting#type=table', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:casting#type=basin', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:clear_glass#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:clear_stained_glass#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:deco_ground#type=mudbrick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:deco_ground_slab#half=bottom,type=mudbrick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_brick_stairs#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_clay#type=brick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_clay#type=clay', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_clay_slab#half=bottom,type=clay', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_clay_slab#half=bottom,type=brick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_clay_stairs#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_beef', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#bacon', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_pufferfish', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimedrop_purple', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_mutton', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimeball_blue', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimeball_blood', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_rabbit', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimedrop_green', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimedrop_blue', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimedrop_blood', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_pork', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimeball_purple', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_chicken', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_clownfish', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_monster', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_fish', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimeball_magma', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimedrop_magma', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_salmon', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=ardite', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=gold', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=ardite', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=clear', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=clear', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=alubrass', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=alubrass', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=jewel', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=cobalt', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=jewel', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=gold', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=manyullyn', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=manyullyn', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=cobalt', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:faucet#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:firewood#type=lavawood', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:firewood#type=firewood', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:firewood_slab#half=bottom,type=lavawood', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:firewood_slab#half=bottom,type=firewood', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:firewood_stairs#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#pigiron', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#cobalt', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#alubrass', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#knightslime', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#manyullyn', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#ardite', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:lavawood_stairs#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#seared_brick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#reinforcement', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#expander_w', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#slimecrystal_blue', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#slimecrystal_green', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#creative_modifier', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#mud_brick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#mending_moss', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#silky_cloth', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#necrotic_bone', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#expander_h', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#moss', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#silky_jewel', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#slimecrystal_magma', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#dried_brick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=alubrass', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=cobalt', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=silky_jewel', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=ardite', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=pigiron', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=manyullyn', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=knightslime', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:mudbrick_stairs#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#pigiron', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#knightslime', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#ardite', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#manyullyn', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#alubrass', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#cobalt', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ore#type=cobalt', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ore#type=ardite', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:punji#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:rack#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=road', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=stone', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=paver', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick_triangle', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick_small', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick_fancy', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=cobble', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=creeper', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick_cracked', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick_square', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=tile', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_furnace_controller#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_glass#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=brick_square', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=road', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=paver', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=brick_fancy', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=brick', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=cobble', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=stone', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=brick_cracked', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab2#half=bottom,type=creeper', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab2#half=bottom,type=brick_small', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab2#half=bottom,type=brick_triangle', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab2#half=bottom,type=tile', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick_cracked#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick_fancy#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick_small#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick_square#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick_triangle#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_cobble#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_creeper#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_paver#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_road#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_stone#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_tile#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_tank#has_knob=true,type=tank', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_tank#has_knob=false,type=gauge', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_tank#has_knob=false,type=window', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime#type=blue', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime#type=magma', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime#type=green', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime#type=blood', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime#type=purple', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_congealed#type=green', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_congealed#type=blood', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_congealed#type=blue', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_congealed#type=purple', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_congealed#type=magma', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_dirt#type=blue', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_dirt#type=green', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_dirt#type=purple', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_dirt#type=magma', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_grass#snowy=false,type=green', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_grass#snowy=false,type=purple', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_grass#snowy=false,type=vanilla', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_grass#snowy=false,type=magma', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_grass#snowy=false,type=blue', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_leaves#normal', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:smeltery_controller#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:smeltery_io#facing=south,type=drain', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=slimy_mud_green', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=graveyard', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=slimy_mud_blue', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=consecrated', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=slimy_mud_magma', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=grout', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:spaghetti#hard', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:spaghetti#soggy', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:spaghetti#cold', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:throwball#efln', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:throwball#glow', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tinker_tank_controller#inventory', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:toolforge#normal', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=partchest', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=stenciltable', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=partbuilder', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=craftingstation', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=toolstation', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=patternchest', trying to load the variant from the blockstate json [20:33:47] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 1,326s [20:33:47] [Client thread/INFO] [FML/]: Max texture size: 4096 [20:33:47] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,002s [20:33:47] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,004s [20:33:47] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload - missingno took 0,001s [20:33:51] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 3,710s [20:33:52] [Client thread/ERROR] [FML/]: Exception loading model for variant avaritia:resource_block#type=infinity for blockstate "avaritia:resource_block[type=infinity]" and for item "avaritia:resource_block", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model avaritia:item/resource_block with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:317) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:147) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:540) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) [idea_rt.jar:?] Caused by: java.io.FileNotFoundException: avaritia:models/item/resource_block.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:118) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:868) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 25 more [20:33:52] [Client thread/ERROR] [FML/]: Exception loading model for variant avaritia:resource_block#type=infinity for blockstate "avaritia:resource_block[type=infinity]" and for item "avaritia:resource_block", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model avaritia:resource_block#type=infinity with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:325) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:147) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:540) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) [idea_rt.jar:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 25 more [20:33:52] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 10,133s [20:33:52] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 10,313s [20:33:53] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0,005s [20:33:53] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0,454s [20:33:53] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0,000s [20:33:53] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0,000s [20:33:53] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0,000s [20:33:53] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0,289s [20:33:53] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 11,067s [20:33:53] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp [20:33:53] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp [20:33:53] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0,000s [20:33:53] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML [20:33:53] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML [20:33:53] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0,000s [20:33:53] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge [20:33:53] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge [20:33:53] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0,000s [20:33:53] [Client thread/TRACE] [avaritia/avaritia]: Sending event FMLInitializationEvent to mod avaritia [20:33:53] [Client thread/TRACE] [avaritia/avaritia]: Sent event FMLInitializationEvent to mod avaritia [20:33:53] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Avaritia took 0,000s [20:33:53] [Client thread/TRACE] [JEI/JEI]: Sending event FMLInitializationEvent to mod JEI [20:33:53] [Client thread/TRACE] [JEI/JEI]: Sent event FMLInitializationEvent to mod JEI [20:33:53] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Just Enough Items took 0,101s [20:33:53] [Client thread/TRACE] [mantle/mantle]: Sending event FMLInitializationEvent to mod mantle [20:33:53] [Client thread/TRACE] [mantle/mantle]: Sent event FMLInitializationEvent to mod mantle [20:33:53] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Mantle took 0,000s [20:33:53] [Client thread/TRACE] [tconstruct/tconstruct]: Sending event FMLInitializationEvent to mod tconstruct [20:33:54] [Client thread/TRACE] [tconstruct/tconstruct]: Sent event FMLInitializationEvent to mod tconstruct [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Tinkers' Construct took 0,205s [20:33:54] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0,307s [20:33:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp [20:33:54] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp [20:33:54] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0,001s [20:33:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML [20:33:54] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML [20:33:54] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0,000s [20:33:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge [20:33:54] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge [20:33:54] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0,000s [20:33:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod avaritia [20:33:54] [Client thread/TRACE] [avaritia/avaritia]: Sending event IMCEvent to mod avaritia [20:33:54] [Client thread/TRACE] [avaritia/avaritia]: Sent event IMCEvent to mod avaritia [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Avaritia took 0,000s [20:33:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod JEI [20:33:54] [Client thread/TRACE] [JEI/JEI]: Sending event IMCEvent to mod JEI [20:33:54] [Client thread/TRACE] [JEI/JEI]: Sent event IMCEvent to mod JEI [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Just Enough Items took 0,000s [20:33:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mantle [20:33:54] [Client thread/TRACE] [mantle/mantle]: Sending event IMCEvent to mod mantle [20:33:54] [Client thread/TRACE] [mantle/mantle]: Sent event IMCEvent to mod mantle [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Mantle took 0,000s [20:33:54] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod tconstruct [20:33:54] [Client thread/TRACE] [tconstruct/tconstruct]: Sending event IMCEvent to mod tconstruct [20:33:54] [Client thread/TRACE] [tconstruct/tconstruct]: Sent event IMCEvent to mod tconstruct [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Tinkers' Construct took 0,000s [20:33:54] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0,003s [20:33:54] [Client thread/INFO] [FML/]: Injecting itemstacks [20:33:54] [Client thread/INFO] [FML/]: Itemstack injection complete [20:33:54] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp [20:33:54] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0,000s [20:33:54] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML [20:33:54] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0,000s [20:33:54] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge [20:33:54] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0,013s [20:33:54] [Client thread/TRACE] [avaritia/avaritia]: Sending event FMLPostInitializationEvent to mod avaritia [20:33:54] [Client thread/TRACE] [avaritia/avaritia]: Sent event FMLPostInitializationEvent to mod avaritia [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Avaritia took 0,001s [20:33:54] [Client thread/TRACE] [JEI/JEI]: Sending event FMLPostInitializationEvent to mod JEI [20:33:54] [Client thread/TRACE] [JEI/JEI]: Sent event FMLPostInitializationEvent to mod JEI [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Just Enough Items took 0,000s [20:33:54] [Client thread/TRACE] [mantle/mantle]: Sending event FMLPostInitializationEvent to mod mantle [20:33:54] [Client thread/TRACE] [mantle/mantle]: Sent event FMLPostInitializationEvent to mod mantle [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Mantle took 0,011s [20:33:54] [Client thread/TRACE] [tconstruct/tconstruct]: Sending event FMLPostInitializationEvent to mod tconstruct [20:33:54] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - MaterialRenderInfoLoader took 0,099s [20:33:54] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - AbstractColoredTexture$CacheClearer took 0,001s [20:33:54] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - CustomTextureCreator took 0,000s [20:33:54] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - CustomFontRenderer took 0,008s [20:33:54] [Client thread/DEBUG] [FML/tconstruct]: Bar Finished: Loading Resource - RenderEvents took 0,000s [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.chestplateIron@0 (1152 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.leggingsIron@0 (1008 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.chestplateGold@0 (1152 gold) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.leggingsGold@0 (1008 gold) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.cauldron@0 (1008 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 16xtile.fenceIron@0 (54 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.helmetIron@0 (720 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.bootsIron@0 (576 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.helmetGold@0 (720 gold) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.bootsGold@0 (576 gold) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 3xitem.doorIron@0 (288 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.minecart@0 (720 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.bucket@0 (432 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xitem.shears@0 (288 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xtile.ironTrapdoor@0 (576 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xtile.weightedPlate_heavy@0 (288 iron) [20:33:54] [Client thread/TRACE] [tconstruct-TinkerSmeltery/tconstruct]: Added automatic melting recipe for 1xtile.weightedPlate_light@0 (288 gold) [20:33:54] [Client thread/TRACE] [tconstruct/tconstruct]: Sent event FMLPostInitializationEvent to mod tconstruct [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Tinkers' Construct took 0,335s [20:33:54] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0,361s [20:33:54] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp [20:33:54] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0,000s [20:33:54] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML [20:33:54] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0,001s [20:33:54] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge [20:33:54] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking: [20:33:54] [Client thread/DEBUG] [FML/Forge]: 17: RecipeEntry("Before", UNKNOWN, ) [20:33:54] [Client thread/DEBUG] [FML/Forge]: 16: RecipeEntry("tconstruct:table", SHAPED, slimeknights.tconstruct.tools.common.TableRecipe) Before: minecraft:shaped [20:33:54] [Client thread/DEBUG] [FML/Forge]: 15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped [20:33:54] [Client thread/DEBUG] [FML/Forge]: 13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped [20:33:54] [Client thread/DEBUG] [FML/Forge]: 12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped [20:33:54] [Client thread/DEBUG] [FML/Forge]: 11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless [20:33:54] [Client thread/DEBUG] [FML/Forge]: 1: RecipeEntry("After", UNKNOWN, ) [20:33:54] [Client thread/DEBUG] [FML/Forge]: Sorting recipes [20:33:54] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0,010s [20:33:54] [Client thread/TRACE] [avaritia/avaritia]: Sending event FMLLoadCompleteEvent to mod avaritia [20:33:54] [Client thread/TRACE] [avaritia/avaritia]: Sent event FMLLoadCompleteEvent to mod avaritia [20:33:54] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Avaritia took 0,001s [20:33:54] [Client thread/TRACE] [JEI/JEI]: Sending event FMLLoadCompleteEvent to mod JEI [20:33:54] [Client thread/DEBUG] [FML/JEI]: Bar Finished: Loading Resource - ProxyCommonClient$1 took 0,000s [20:33:54] [Client thread/INFO] [JEI/JEI]: Starting JEI... [20:33:54] [Client thread/DEBUG] [FML/JEI]: Bar Finished: Registering item subtypes took 0,013s [20:33:55] [Client thread/DEBUG] [FML/JEI]: Bar Finished: Registering ingredients took 1,508s [20:33:55] [Client thread/INFO] [JEI/JEI]: Registering plugin: mezz.jei.plugins.vanilla.VanillaPlugin ... [20:33:56] [Client thread/INFO] [JEI/JEI]: Registered plugin: mezz.jei.plugins.vanilla.VanillaPlugin in 191 ms [20:33:56] [Client thread/INFO] [JEI/JEI]: Registering plugin: slimeknights.tconstruct.plugin.jei.JEIPlugin ... [20:33:56] [Client thread/INFO] [JEI/JEI]: Registered plugin: slimeknights.tconstruct.plugin.jei.JEIPlugin in 78 ms [20:33:56] [Client thread/INFO] [JEI/JEI]: Registering plugin: slimeknights.mantle.util.JeiPlugin ... [20:33:56] [Client thread/INFO] [JEI/JEI]: Registered plugin: slimeknights.mantle.util.JeiPlugin in 2 ms [20:33:56] [Client thread/INFO] [JEI/JEI]: Registering plugin: mezz.jei.plugins.jei.JEIInternalPlugin ... [20:33:56] [Client thread/INFO] [JEI/JEI]: Registered plugin: mezz.jei.plugins.jei.JEIInternalPlugin in 5 ms [20:33:56] [Client thread/DEBUG] [FML/JEI]: Bar Finished: Registering plugins took 0,278s [20:33:56] [Client thread/INFO] [JEI/JEI]: Building recipe registry... [20:33:56] [Client thread/DEBUG] [FML/JEI]: Bar Finished: Adding recipes took 0,281s [20:33:56] [Client thread/INFO] [JEI/JEI]: Built recipe registry in 318 ms [20:33:56] [Client thread/INFO] [JEI/JEI]: Building item filter... [20:33:56] [Client thread/DEBUG] [FML/JEI]: Bar Finished: Adding FluidStack ingredients. took 0,014s [20:33:57] [Client thread/DEBUG] [FML/JEI]: Bar Finished: Adding ItemStack ingredients. took 1,112s [20:33:57] [Client thread/INFO] [JEI/JEI]: Built item filter in 1173 ms [20:33:57] [Client thread/INFO] [JEI/JEI]: Building runtime... [20:33:57] [Client thread/INFO] [JEI/JEI]: Built runtime in 96 ms [20:33:57] [Client thread/INFO] [JEI/JEI]: Sending runtime to plugin: mezz.jei.plugins.vanilla.VanillaPlugin ... [20:33:57] [Client thread/INFO] [JEI/JEI]: Sending runtime to plugin: slimeknights.tconstruct.plugin.jei.JEIPlugin ... [20:33:57] [Client thread/INFO] [JEI/JEI]: Sending runtime to plugin: slimeknights.mantle.util.JeiPlugin ... [20:33:57] [Client thread/INFO] [JEI/JEI]: Sending runtime to plugin: mezz.jei.plugins.jei.JEIInternalPlugin ... [20:33:57] [Client thread/DEBUG] [FML/JEI]: Bar Finished: Sending Runtime took 0,001s [20:33:57] [Client thread/INFO] [JEI/JEI]: Finished Starting JEI in 3528 ms [20:33:57] [Client thread/TRACE] [JEI/JEI]: Sent event FMLLoadCompleteEvent to mod JEI [20:33:57] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Just Enough Items took 3,531s [20:33:57] [Client thread/TRACE] [mantle/mantle]: Sending event FMLLoadCompleteEvent to mod mantle [20:33:57] [Client thread/TRACE] [mantle/mantle]: Sent event FMLLoadCompleteEvent to mod mantle [20:33:57] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Mantle took 0,000s [20:33:57] [Client thread/TRACE] [tconstruct/tconstruct]: Sending event FMLLoadCompleteEvent to mod tconstruct [20:33:57] [Client thread/TRACE] [tconstruct/tconstruct]: Sent event FMLLoadCompleteEvent to mod tconstruct [20:33:57] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Tinkers' Construct took 0,000s [20:33:57] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 3,544s [20:33:57] [Client thread/DEBUG] [FML/]: Freezing block and item id maps [20:33:57] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 7 mods [20:33:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,000s [20:33:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,014s [20:33:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,013s [20:33:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Avaritia took 0,001s [20:33:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Just Enough Items took 0,001s [20:33:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Mantle took 0,002s [20:33:57] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Tinkers' Construct took 0,006s [20:33:58] [Client thread/INFO] [Mantle/]: Started loading books... [20:33:58] [Client thread/INFO] [Mantle/]: Book loading completed in 0.132467813 seconds. [20:33:58] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0,000s [20:33:58] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0,009s [20:33:58] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0,001s [20:33:58] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/logo_1 took 0,000s [20:33:58] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0,005s [20:33:58] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0,006s [20:33:58] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0,021s [20:33:58] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: Failed to process update information java.net.ConnectException: Connection timed out: connect at java.net.DualStackPlainSocketImpl.connect0(Native Method) ~[?:1.8.0_111] at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:79) ~[?:1.8.0_111] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350) ~[?:1.8.0_111] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) ~[?:1.8.0_111] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188) ~[?:1.8.0_111] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172) ~[?:1.8.0_111] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[?:1.8.0_111] at java.net.Socket.connect(Socket.java:589) ~[?:1.8.0_111] at java.net.Socket.connect(Socket.java:538) ~[?:1.8.0_111] at sun.net.NetworkClient.doConnect(NetworkClient.java:180) ~[?:1.8.0_111] at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) ~[?:1.8.0_111] at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) ~[?:1.8.0_111] at sun.net.www.http.HttpClient.<init>(HttpClient.java:211) ~[?:1.8.0_111] at sun.net.www.http.HttpClient.New(HttpClient.java:308) ~[?:1.8.0_111] at sun.net.www.http.HttpClient.New(HttpClient.java:326) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1202) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1138) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1022) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1020) ~[?:1.8.0_111] at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_111] at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1019) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:966) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1546) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:91) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1466) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1464) ~[?:1.8.0_111] at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_111] at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_111] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1463) ~[?:1.8.0_111] at java.net.URL.openStream(URL.java:1045) ~[?:1.8.0_111] at net.minecraftforge.common.ForgeVersion$1.process(ForgeVersion.java:208) [ForgeVersion$1.class:?] at net.minecraftforge.common.ForgeVersion$1.run(ForgeVersion.java:191) [ForgeVersion$1.class:?] [20:34:04] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3,262s [20:34:04] [Client thread/DEBUG] [FML/]: Item json isn't found for 'avaritia:resource_block#type=infinity', trying to load the variant from the blockstate json [20:34:04] [Client thread/DEBUG] [FML/]: Item json isn't found for 'avaritia:resource_block#type=neutronium', trying to load the variant from the blockstate json [20:34:04] [Client thread/DEBUG] [FML/]: Item json isn't found for 'forge:dynbucket#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: spaghetti_sauce Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: luck Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: webbed Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: necrotic Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: fiery Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: fins Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: smite Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: knockback Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: haste Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: mending_moss Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: reinforced Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: silktouch Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: beheading Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: blasting Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: spaghetti_meat Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: diamond Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: bane_of_arthopods Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: fortify Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: glowing Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: soulbound Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: shulking Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: sharpness Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: emerald Modifiers model does not contain a default-entry [20:34:05] [Client thread/DEBUG] [tconstruct-modifier/]: Tried to load modifier models for bolt_corebut none were found [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick_cracked', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick_triangle', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=paver', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick_small', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=smooth', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick_square', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=creeper', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=rough', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=brick_fancy', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=tile', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone#type=road', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=brick_square', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=smooth', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=paver', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=brick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=rough', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=brick_fancy', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=brick_cracked', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab#half=bottom,type=road', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab2#half=bottom,type=brick_small', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab2#half=bottom,type=brick_triangle', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab2#half=bottom,type=creeper', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_slab2#half=bottom,type=tile', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick_cracked#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick_fancy#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick_small#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick_square#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_brick_triangle#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_creeper#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_paver#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_road#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_rough#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_smooth#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:brownstone_stairs_tile#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:cast_custom#gem', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:cast_custom#nugget', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:cast_custom#plate', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:cast_custom#gear', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:cast_custom#ingot', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:casting#type=table', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:casting#type=basin', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:clear_glass#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:clear_stained_glass#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:deco_ground#type=mudbrick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:deco_ground_slab#half=bottom,type=mudbrick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_brick_stairs#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_clay#type=brick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_clay#type=clay', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_clay_slab#half=bottom,type=clay', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_clay_slab#half=bottom,type=brick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:dried_clay_stairs#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_beef', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#bacon', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_pufferfish', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimedrop_purple', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_mutton', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimeball_blue', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimeball_blood', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_rabbit', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimedrop_green', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimedrop_blue', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimedrop_blood', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_pork', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimeball_purple', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_chicken', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_clownfish', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_monster', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_fish', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimeball_magma', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#slimedrop_magma', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:edible#jerky_salmon', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=ardite', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=gold', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=ardite', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=clear', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=clear', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=alubrass', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=alubrass', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=jewel', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=cobalt', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=jewel', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=gold', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=manyullyn', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=true,type=manyullyn', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:fancy_frame#map=false,type=cobalt', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:faucet#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:firewood#type=lavawood', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:firewood#type=firewood', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:firewood_slab#half=bottom,type=lavawood', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:firewood_slab#half=bottom,type=firewood', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:firewood_stairs#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#pigiron', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#cobalt', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#alubrass', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#knightslime', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#manyullyn', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ingots#ardite', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:lavawood_stairs#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#seared_brick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#reinforcement', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#expander_w', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#slimecrystal_blue', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#slimecrystal_green', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#creative_modifier', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#mud_brick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#mending_moss', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#silky_cloth', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#necrotic_bone', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#expander_h', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#moss', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#silky_jewel', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#slimecrystal_magma', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:materials#dried_brick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=alubrass', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=cobalt', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=silky_jewel', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=ardite', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=pigiron', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=manyullyn', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:metal#type=knightslime', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:mudbrick_stairs#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#pigiron', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#knightslime', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#ardite', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#manyullyn', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#alubrass', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:nuggets#cobalt', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ore#type=cobalt', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:ore#type=ardite', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:punji#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:rack#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=road', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=stone', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=paver', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick_triangle', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick_small', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick_fancy', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=cobble', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=creeper', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick_cracked', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=brick_square', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared#type=tile', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_furnace_controller#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_glass#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=brick_square', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=road', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=paver', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=brick_fancy', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=brick', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=cobble', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=stone', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab#half=bottom,type=brick_cracked', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab2#half=bottom,type=creeper', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab2#half=bottom,type=brick_small', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab2#half=bottom,type=brick_triangle', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_slab2#half=bottom,type=tile', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick_cracked#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick_fancy#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick_small#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick_square#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_brick_triangle#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_cobble#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_creeper#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_paver#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_road#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_stone#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_stairs_tile#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_tank#has_knob=true,type=tank', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_tank#has_knob=false,type=gauge', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:seared_tank#has_knob=false,type=window', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime#type=blue', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime#type=magma', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime#type=green', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime#type=blood', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime#type=purple', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_congealed#type=green', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_congealed#type=blood', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_congealed#type=blue', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_congealed#type=purple', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_congealed#type=magma', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_dirt#type=blue', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_dirt#type=green', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_dirt#type=purple', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_dirt#type=magma', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_grass#snowy=false,type=green', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_grass#snowy=false,type=purple', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_grass#snowy=false,type=vanilla', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_grass#snowy=false,type=magma', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_grass#snowy=false,type=blue', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:slime_leaves#normal', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:smeltery_controller#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:smeltery_io#facing=south,type=drain', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=slimy_mud_green', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=graveyard', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=slimy_mud_blue', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=consecrated', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=slimy_mud_magma', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:soil#type=grout', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:spaghetti#hard', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:spaghetti#soggy', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:spaghetti#cold', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:throwball#efln', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:throwball#glow', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tinker_tank_controller#inventory', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:toolforge#normal', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=partchest', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=stenciltable', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=partbuilder', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=craftingstation', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=toolstation', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Item json isn't found for 'tconstruct:tooltables#type=patternchest', trying to load the variant from the blockstate json [20:34:05] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 1,366s [20:34:05] [Client thread/DEBUG] [tconstruct-TextureGen/]: Generated 2828 Textures for Materials [20:34:05] [Client thread/INFO] [FML/]: Max texture size: 4096 [20:34:06] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,521s [20:34:06] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,439s [20:34:06] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,451s [20:34:07] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload took 1,003s [20:34:15] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 7,364s [20:34:15] [Client thread/ERROR] [FML/]: Exception loading model for variant avaritia:resource_block#type=infinity for blockstate "avaritia:resource_block[type=infinity]" and for item "avaritia:resource_block", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model avaritia:item/resource_block with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:317) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:147) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:799) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:561) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) [idea_rt.jar:?] Caused by: java.io.FileNotFoundException: avaritia:models/item/resource_block.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:118) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:868) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 28 more [20:34:15] [Client thread/ERROR] [FML/]: Exception loading model for variant avaritia:resource_block#type=infinity for blockstate "avaritia:resource_block[type=infinity]" and for item "avaritia:resource_block", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model avaritia:resource_block#type=infinity with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:325) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:147) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:799) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:561) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111] at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) [idea_rt.jar:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 28 more [20:34:15] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 17,444s [20:34:15] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 17,445s [20:34:15] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 17,482s [20:34:15] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one [20:34:15] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one [20:34:15] [Client thread/DEBUG] [Avaritia/]: Mod Avaritia is missing a pack.mcmeta file, substituting a dummy one [20:34:15] [Client thread/DEBUG] [Just Enough Items/]: Mod Just Enough Items is missing a pack.mcmeta file, substituting a dummy one [20:34:15] [Client thread/DEBUG] [Mantle/]: Mod Mantle is missing a pack.mcmeta file, substituting a dummy one [20:34:15] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 45,105s [20:34:22] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp [20:34:22] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0,001s [20:34:22] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML [20:34:22] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0,000s [20:34:22] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge [20:34:22] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0,000s [20:34:22] [server thread/TRACE] [avaritia/avaritia]: Sending event FMLServerAboutToStartEvent to mod avaritia [20:34:22] [server thread/TRACE] [avaritia/avaritia]: Sent event FMLServerAboutToStartEvent to mod avaritia [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Avaritia took 0,000s [20:34:22] [server thread/TRACE] [JEI/JEI]: Sending event FMLServerAboutToStartEvent to mod JEI [20:34:22] [server thread/TRACE] [JEI/JEI]: Sent event FMLServerAboutToStartEvent to mod JEI [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Just Enough Items took 0,000s [20:34:22] [server thread/TRACE] [mantle/mantle]: Sending event FMLServerAboutToStartEvent to mod mantle [20:34:22] [server thread/TRACE] [mantle/mantle]: Sent event FMLServerAboutToStartEvent to mod mantle [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Mantle took 0,000s [20:34:22] [server thread/TRACE] [tconstruct/tconstruct]: Sending event FMLServerAboutToStartEvent to mod tconstruct [20:34:22] [server thread/TRACE] [tconstruct/tconstruct]: Sent event FMLServerAboutToStartEvent to mod tconstruct [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Tinkers' Construct took 0,000s [20:34:22] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0,002s [20:34:22] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:tooltables: 245 (init) -> 244 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_brick_cracked: 263 (init) -> 262 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared: 247 (init) -> 246 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:clear_glass: 225 (init) -> 224 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:milk: 311 (init) -> 310 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch avaritia:resource_block: 218 (init) -> 314 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:firewood_slab: 228 (init) -> 227 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_brick_triangle: 266 (init) -> 265 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_grass: 235 (init) -> 234 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_creeper: 296 (init) -> 295 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:punji: 273 (init) -> 272 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_glass: 253 (init) -> 252 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_vine_purple_mid: 243 (init) -> 242 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_vine_purple: 244 (init) -> 243 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_dirt: 234 (init) -> 233 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_slab2: 284 (init) -> 283 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:mudbrick_stairs: 229 (init) -> 228 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:smeltery_io: 252 (init) -> 251 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:stone_torch: 271 (init) -> 270 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_leaves: 236 (init) -> 235 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:soil: 219 (init) -> 218 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:clear_stained_glass: 226 (init) -> 225 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_tank: 249 (init) -> 248 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_road: 294 (init) -> 293 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:glow: 233 (init) -> 232 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_brick: 262 (init) -> 261 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_brick_small: 293 (init) -> 292 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:faucet: 250 (init) -> 249 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:wood_rail_trapdoor: 276 (init) -> 275 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:firewood: 223 (init) -> 222 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:toolforge: 246 (init) -> 245 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_vine_purple_end: 242 (init) -> 241 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:stone_ladder: 272 (init) -> 271 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_clay: 306 (init) -> 305 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_gold: 303 (init) -> 302 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:deco_ground: 224 (init) -> 223 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_creeper: 270 (init) -> 269 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:blueslime: 312 (init) -> 311 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_cobble: 260 (init) -> 259 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:wood_rail: 275 (init) -> 274 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_sapling: 238 (init) -> 237 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_brick_square: 265 (init) -> 264 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_brick_triangle: 292 (init) -> 291 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_paver: 287 (init) -> 286 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_knightslime: 299 (init) -> 298 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:smeltery_controller: 248 (init) -> 247 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_manyullyn: 302 (init) -> 301 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:metal: 232 (init) -> 231 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:ore: 222 (init) -> 221 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_obsidian: 305 (init) -> 304 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_slab: 283 (init) -> 282 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_brick_cracked: 289 (init) -> 288 (map). [20:34:22] [server thread/INFO] [FML/]: Found a missing id from the world avaritia:molten_infinitymetal [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_tile: 295 (init) -> 294 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_slab2: 258 (init) -> 257 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_vine_blue_end: 239 (init) -> 238 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_brick_fancy: 290 (init) -> 289 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:lavawood_stairs: 231 (init) -> 230 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_brick_square: 291 (init) -> 290 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_rough: 286 (init) -> 285 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:dried_clay: 278 (init) -> 277 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:dried_brick_stairs: 281 (init) -> 280 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_brick_fancy: 264 (init) -> 263 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_brick_small: 267 (init) -> 266 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_iron: 297 (init) -> 296 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_glass: 309 (init) -> 308 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_brick: 288 (init) -> 287 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_road: 268 (init) -> 267 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:dried_clay_stairs: 280 (init) -> 279 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_congealed: 221 (init) -> 220 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone_stairs_smooth: 285 (init) -> 284 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_vine_blue: 241 (init) -> 240 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:deco_ground_slab: 227 (init) -> 226 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_grass_tall: 237 (init) -> 236 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:dried_clay_slab: 279 (init) -> 278 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:firewood_stairs: 230 (init) -> 229 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_cobalt: 300 (init) -> 299 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_dirt: 307 (init) -> 306 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_emerald: 308 (init) -> 307 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime: 220 (init) -> 219 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_paver: 261 (init) -> 260 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:blood: 310 (init) -> 309 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:brownstone: 282 (init) -> 281 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:casting: 251 (init) -> 250 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_pigiron: 298 (init) -> 297 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_vine_blue_mid: 240 (init) -> 239 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_furnace_controller: 254 (init) -> 253 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_ardite: 301 (init) -> 300 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:slime_channel: 277 (init) -> 276 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_slab: 257 (init) -> 256 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_stone: 259 (init) -> 258 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:rack: 274 (init) -> 273 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:seared_stairs_tile: 269 (init) -> 268 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:purpleslime: 313 (init) -> 312 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:molten_stone: 304 (init) -> 303 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:blocks id mismatch tconstruct:tinker_tank_controller: 256 (init) -> 254 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_brick_cracked: 4194 (init) -> 4193 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:clear_glass: 4105 (init) -> 4104 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:pickaxe: 4159 (init) -> 4158 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:scythe: 4166 (init) -> 4165 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:bolt_core: 4156 (init) -> 4155 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_brick_triangle: 4197 (init) -> 4196 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_grass: 4118 (init) -> 4117 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:sharpening_kit: 4130 (init) -> 4129 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:clay_cast: 4204 (init) -> 4203 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_vine_purple: 4127 (init) -> 4126 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_slab2: 4218 (init) -> 4217 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:mudbrick_stairs: 4109 (init) -> 4108 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_leaves: 4119 (init) -> 4118 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:shuriken: 4178 (init) -> 4177 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_tank: 4181 (init) -> 4180 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_road: 4228 (init) -> 4227 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:cast_custom: 4203 (init) -> 4202 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:shard: 4129 (init) -> 4128 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_brick: 4193 (init) -> 4192 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:wood_rail_trapdoor: 4210 (init) -> 4209 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:tool_rod: 4142 (init) -> 4141 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:toolforge: 4158 (init) -> 4157 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_vine_purple_end: 4125 (init) -> 4124 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_clay: 4248 (init) -> 4247 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:deco_ground: 4104 (init) -> 4103 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_creeper: 4201 (init) -> 4200 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:blueslime: 4254 (init) -> 4253 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:axe_head: 4133 (init) -> 4132 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_cobble: 4191 (init) -> 4190 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:cross_guard: 4148 (init) -> 4147 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:binding: 4144 (init) -> 4143 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_brick_triangle: 4226 (init) -> 4225 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_knightslime: 4241 (init) -> 4240 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:ore: 4102 (init) -> 4101 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_tile: 4229 (init) -> 4228 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_slab2: 4189 (init) -> 4188 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:book: 4098 (init) -> 4097 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:throwball: 4234 (init) -> 4233 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:nuggets: 4112 (init) -> 4111 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:piggybackpack: 4233 (init) -> 4232 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:excavator_head: 4138 (init) -> 4137 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:arrow_shaft: 4154 (init) -> 4153 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_rough: 4220 (init) -> 4219 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:dried_brick_stairs: 4215 (init) -> 4214 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_brick_fancy: 4195 (init) -> 4194 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:longbow: 4174 (init) -> 4173 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_brick_small: 4198 (init) -> 4197 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:tough_tool_rod: 4143 (init) -> 4142 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_glass: 4251 (init) -> 4250 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:shovel: 4160 (init) -> 4159 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:dried_clay_stairs: 4214 (init) -> 4213 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_congealed: 4101 (init) -> 4100 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_smooth: 4219 (init) -> 4218 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:bolt: 4177 (init) -> 4176 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:moms_spaghetti: 4238 (init) -> 4237 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:lumberaxe: 4165 (init) -> 4164 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:excavator: 4164 (init) -> 4163 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_boots: 4232 (init) -> 4231 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:large_sword_blade: 4136 (init) -> 4135 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:pan_head: 4140 (init) -> 4139 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:large_plate: 4149 (init) -> 4148 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:hand_guard: 4147 (init) -> 4146 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:blood: 4252 (init) -> 4251 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone: 4216 (init) -> 4215 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:shortbow: 4173 (init) -> 4172 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:edible: 4115 (init) -> 4114 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:knife_blade: 4150 (init) -> 4149 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:sign_head: 4141 (init) -> 4140 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_vine_blue_mid: 4123 (init) -> 4122 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_furnace_controller: 4186 (init) -> 4185 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_ardite: 4243 (init) -> 4242 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:cast: 4202 (init) -> 4201 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_channel: 4211 (init) -> 4210 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:tough_binding: 4145 (init) -> 4144 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_slab: 4188 (init) -> 4187 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:rack: 4208 (init) -> 4207 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:purpleslime: 4255 (init) -> 4254 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:hammer_head: 4137 (init) -> 4136 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slimesling: 4231 (init) -> 4230 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:tinker_tank_controller: 4187 (init) -> 4186 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:rapier: 4169 (init) -> 4168 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:wide_guard: 4146 (init) -> 4145 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:fletching: 4155 (init) -> 4154 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:tooltables: 4157 (init) -> 4156 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:hammer: 4163 (init) -> 4162 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:frypan: 4170 (init) -> 4169 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared: 4179 (init) -> 4178 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:milk: 4253 (init) -> 4252 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch avaritia:resource_block: 4097 (init) -> 4256 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:firewood_slab: 4108 (init) -> 4107 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_creeper: 4230 (init) -> 4229 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:punji: 4207 (init) -> 4206 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:battlesign: 4171 (init) -> 4170 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_glass: 4185 (init) -> 4184 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_vine_purple_mid: 4126 (init) -> 4125 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:materials: 4114 (init) -> 4113 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_dirt: 4117 (init) -> 4116 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:smeltery_io: 4184 (init) -> 4183 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:stone_torch: 4205 (init) -> 4204 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:cleaver: 4172 (init) -> 4171 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:broad_axe_head: 4134 (init) -> 4133 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:longsword: 4168 (init) -> 4167 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:mattock: 4162 (init) -> 4161 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:soil: 4099 (init) -> 4098 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:clear_stained_glass: 4106 (init) -> 4105 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:stone_stick: 4235 (init) -> 4234 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_brick_small: 4227 (init) -> 4226 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:faucet: 4182 (init) -> 4181 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:hatchet: 4161 (init) -> 4160 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:spaghetti: 4237 (init) -> 4236 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:shovel_head: 4132 (init) -> 4131 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:firewood: 4103 (init) -> 4102 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:bow_string: 4152 (init) -> 4151 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:stone_ladder: 4206 (init) -> 4205 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_gold: 4245 (init) -> 4244 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:wood_rail: 4209 (init) -> 4208 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_sapling: 4121 (init) -> 4120 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:broadsword: 4167 (init) -> 4166 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_brick_square: 4196 (init) -> 4195 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:crossbow: 4175 (init) -> 4174 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_paver: 4221 (init) -> 4220 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:smeltery_controller: 4180 (init) -> 4179 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_manyullyn: 4244 (init) -> 4243 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:metal: 4116 (init) -> 4115 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_obsidian: 4247 (init) -> 4246 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_slab: 4217 (init) -> 4216 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_brick_cracked: 4223 (init) -> 4222 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:pick_head: 4131 (init) -> 4130 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:sword_blade: 4135 (init) -> 4134 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_vine_blue_end: 4122 (init) -> 4121 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_brick_fancy: 4224 (init) -> 4223 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:lavawood_stairs: 4111 (init) -> 4110 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:pattern: 4128 (init) -> 4127 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_brick_square: 4225 (init) -> 4224 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:ingots: 4113 (init) -> 4112 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:dried_clay: 4212 (init) -> 4211 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_iron: 4239 (init) -> 4238 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:brownstone_stairs_brick: 4222 (init) -> 4221 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:arrow: 4176 (init) -> 4175 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_road: 4199 (init) -> 4198 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_vine_blue: 4124 (init) -> 4123 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:bow_limb: 4151 (init) -> 4150 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:deco_ground_slab: 4107 (init) -> 4106 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:fancy_frame: 4236 (init) -> 4235 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime_grass_tall: 4120 (init) -> 4119 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:dried_clay_slab: 4213 (init) -> 4212 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:firewood_stairs: 4110 (init) -> 4109 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_cobalt: 4242 (init) -> 4241 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_dirt: 4249 (init) -> 4248 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_emerald: 4250 (init) -> 4249 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:slime: 4100 (init) -> 4099 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_paver: 4192 (init) -> 4191 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:casting: 4183 (init) -> 4182 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_pigiron: 4240 (init) -> 4239 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:scythe_head: 4139 (init) -> 4138 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_stone: 4190 (init) -> 4189 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:seared_stairs_tile: 4200 (init) -> 4199 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:arrow_head: 4153 (init) -> 4152 (map). [20:34:22] [server thread/DEBUG] [FML/]: Fixed minecraft:items id mismatch tconstruct:molten_stone: 4246 (init) -> 4245 (map). [20:34:22] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp [20:34:22] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,001s [20:34:22] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML [20:34:22] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s [20:34:22] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge [20:34:22] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,048s [20:34:22] [server thread/TRACE] [avaritia/avaritia]: Sending event FMLModIdMappingEvent to mod avaritia [20:34:22] [server thread/TRACE] [avaritia/avaritia]: Sent event FMLModIdMappingEvent to mod avaritia [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Avaritia took 0,000s [20:34:22] [server thread/TRACE] [JEI/JEI]: Sending event FMLModIdMappingEvent to mod JEI [20:34:22] [server thread/TRACE] [JEI/JEI]: Sent event FMLModIdMappingEvent to mod JEI [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Just Enough Items took 0,000s [20:34:22] [server thread/TRACE] [mantle/mantle]: Sending event FMLModIdMappingEvent to mod mantle [20:34:22] [server thread/TRACE] [mantle/mantle]: Sent event FMLModIdMappingEvent to mod mantle [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Mantle took 0,000s [20:34:22] [server thread/TRACE] [tconstruct/tconstruct]: Sending event FMLModIdMappingEvent to mod tconstruct [20:34:22] [server thread/TRACE] [tconstruct/tconstruct]: Sent event FMLModIdMappingEvent to mod tconstruct [20:34:22] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Tinkers' Construct took 0,000s [20:34:22] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,050s [20:34:22] [server thread/INFO] [FML/]: Applying holder lookups [20:34:22] [server thread/INFO] [FML/]: Holder lookups applied [20:34:22] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:alubrass has been selected as the default fluid for alubrass [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:blueslime has been selected as the default fluid for blueslime [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:lead has been selected as the default fluid for lead [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:steel has been selected as the default fluid for steel [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:milk has been selected as the default fluid for milk [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:gold has been selected as the default fluid for gold [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:clay has been selected as the default fluid for clay [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:electrum has been selected as the default fluid for electrum [20:34:22] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:purpleslime has been selected as the default fluid for purpleslime [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:knightslime has been selected as the default fluid for knightslime [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:brass has been selected as the default fluid for brass [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:pigiron has been selected as the default fluid for pigiron [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:cobalt has been selected as the default fluid for cobalt [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:bronze has been selected as the default fluid for bronze [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:iron has been selected as the default fluid for iron [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:ardite has been selected as the default fluid for ardite [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:tin has been selected as the default fluid for tin [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:aluminum has been selected as the default fluid for aluminum [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:blood has been selected as the default fluid for blood [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:dirt has been selected as the default fluid for dirt [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:nickel has been selected as the default fluid for nickel [20:34:22] [server thread/DEBUG] [FML/]: The fluid avaritia:avaritia_blazing has been selected as the default fluid for avaritia_blazing [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:copper has been selected as the default fluid for copper [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:obsidian has been selected as the default fluid for obsidian [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:silver has been selected as the default fluid for silver [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:stone has been selected as the default fluid for stone [20:34:22] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:glass has been selected as the default fluid for glass [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:emerald has been selected as the default fluid for emerald [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:zinc has been selected as the default fluid for zinc [20:34:22] [server thread/DEBUG] [FML/]: The fluid tconstruct:manyullyn has been selected as the default fluid for manyullyn [20:34:22] [server thread/DEBUG] [FML/]: The fluid avaritia:avaritia_infinitymetal has been selected as the default fluid for avaritia_infinitymetal [20:34:23] [server thread/INFO] [FML/]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@2d4dafca) [20:34:23] [server thread/INFO] [FML/]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@2d4dafca) [20:34:23] [server thread/INFO] [FML/]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@2d4dafca) [20:34:25] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp [20:34:25] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0,000s [20:34:25] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML [20:34:25] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0,000s [20:34:25] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge [20:34:25] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0,003s [20:34:25] [server thread/TRACE] [avaritia/avaritia]: Sending event FMLServerStartingEvent to mod avaritia [20:34:25] [server thread/TRACE] [avaritia/avaritia]: Sent event FMLServerStartingEvent to mod avaritia [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Avaritia took 0,000s [20:34:25] [server thread/TRACE] [JEI/JEI]: Sending event FMLServerStartingEvent to mod JEI [20:34:25] [server thread/TRACE] [JEI/JEI]: Sent event FMLServerStartingEvent to mod JEI [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Just Enough Items took 0,000s [20:34:25] [server thread/TRACE] [mantle/mantle]: Sending event FMLServerStartingEvent to mod mantle [20:34:25] [server thread/TRACE] [mantle/mantle]: Sent event FMLServerStartingEvent to mod mantle [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Mantle took 0,000s [20:34:25] [server thread/TRACE] [tconstruct/tconstruct]: Sending event FMLServerStartingEvent to mod tconstruct [20:34:25] [server thread/TRACE] [tconstruct/tconstruct]: Sent event FMLServerStartingEvent to mod tconstruct [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Tinkers' Construct took 0,000s [20:34:25] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0,005s [20:34:25] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp [20:34:25] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0,000s [20:34:25] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML [20:34:25] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0,000s [20:34:25] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge [20:34:25] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0,000s [20:34:25] [server thread/TRACE] [avaritia/avaritia]: Sending event FMLServerStartedEvent to mod avaritia [20:34:25] [server thread/TRACE] [avaritia/avaritia]: Sent event FMLServerStartedEvent to mod avaritia [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Avaritia took 0,000s [20:34:25] [server thread/TRACE] [JEI/JEI]: Sending event FMLServerStartedEvent to mod JEI [20:34:25] [server thread/TRACE] [JEI/JEI]: Sent event FMLServerStartedEvent to mod JEI [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Just Enough Items took 0,000s [20:34:25] [server thread/TRACE] [mantle/mantle]: Sending event FMLServerStartedEvent to mod mantle [20:34:25] [server thread/TRACE] [mantle/mantle]: Sent event FMLServerStartedEvent to mod mantle [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Mantle took 0,000s [20:34:25] [server thread/TRACE] [tconstruct/tconstruct]: Sending event FMLServerStartedEvent to mod tconstruct [20:34:25] [server thread/TRACE] [tconstruct/tconstruct]: Sent event FMLServerStartedEvent to mod tconstruct [20:34:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Tinkers' Construct took 0,000s [20:34:25] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0,002s [20:34:28] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: Next: HELLO [20:34:28] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: Next: HELLO [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0 [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO [20:34:28] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2 [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0 [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO [20:34:28] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2 [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: Next: HELLO [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:7 mods->FMLHandshakeServerState$2:HELLO [20:34:28] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 7 mods : [email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected] [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: Next: WAITINGCACK [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERDATA [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:7 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: Next: PENDINGCOMPLETE [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: Next: COMPLETE [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: Next: COMPLETE [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:alubrass has been selected as the default fluid for alubrass [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:blueslime has been selected as the default fluid for blueslime [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:lead has been selected as the default fluid for lead [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:steel has been selected as the default fluid for steel [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:milk has been selected as the default fluid for milk [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:gold has been selected as the default fluid for gold [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:clay has been selected as the default fluid for clay [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:electrum has been selected as the default fluid for electrum [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:purpleslime has been selected as the default fluid for purpleslime [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:brass has been selected as the default fluid for brass [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:knightslime has been selected as the default fluid for knightslime [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:pigiron has been selected as the default fluid for pigiron [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:cobalt has been selected as the default fluid for cobalt [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: Next: DONE [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:bronze has been selected as the default fluid for bronze [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:iron has been selected as the default fluid for iron [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:ardite has been selected as the default fluid for ardite [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:tin has been selected as the default fluid for tin [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:aluminum has been selected as the default fluid for aluminum [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:blood has been selected as the default fluid for blood [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:nickel has been selected as the default fluid for nickel [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:dirt has been selected as the default fluid for dirt [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:obsidian has been selected as the default fluid for obsidian [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid avaritia:avaritia_blazing has been selected as the default fluid for avaritia_blazing [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:copper has been selected as the default fluid for copper [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:stone has been selected as the default fluid for stone [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:silver has been selected as the default fluid for silver [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:glass has been selected as the default fluid for glass [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:emerald has been selected as the default fluid for emerald [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:zinc has been selected as the default fluid for zinc [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid tconstruct:manyullyn has been selected as the default fluid for manyullyn [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid avaritia:avaritia_infinitymetal has been selected as the default fluid for avaritia_infinitymetal [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE [20:34:28] [Netty Local Client IO #0/DEBUG] [FML/]: Next: DONE [20:34:28] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE [20:34:28] [Netty Server IO #1/DEBUG] [FML/]: Next: DONE [20:34:28] [server thread/INFO] [FML/]: [server thread] Server side modded connection established [20:34:28] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0 [20:34:30] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World [20:35:08] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World [20:35:09] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp [20:35:09] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Coder Pack took 0,001s [20:35:09] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML [20:35:09] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Forge Mod Loader took 0,002s [20:35:09] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge [20:35:09] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Forge took 0,001s [20:35:09] [server thread/TRACE] [avaritia/avaritia]: Sending event FMLServerStoppingEvent to mod avaritia [20:35:09] [server thread/TRACE] [avaritia/avaritia]: Sent event FMLServerStoppingEvent to mod avaritia [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Avaritia took 0,001s [20:35:09] [server thread/TRACE] [JEI/JEI]: Sending event FMLServerStoppingEvent to mod JEI [20:35:09] [server thread/TRACE] [JEI/JEI]: Sent event FMLServerStoppingEvent to mod JEI [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Just Enough Items took 0,000s [20:35:09] [server thread/TRACE] [mantle/mantle]: Sending event FMLServerStoppingEvent to mod mantle [20:35:09] [server thread/TRACE] [mantle/mantle]: Sent event FMLServerStoppingEvent to mod mantle [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Mantle took 0,004s [20:35:09] [server thread/TRACE] [tconstruct/tconstruct]: Sending event FMLServerStoppingEvent to mod tconstruct [20:35:09] [server thread/TRACE] [tconstruct/tconstruct]: Sent event FMLServerStoppingEvent to mod tconstruct [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Tinkers' Construct took 0,001s [20:35:09] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopping took 0,009s [20:35:09] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World [20:35:09] [server thread/INFO] [FML/]: Unloading dimension 0 [20:35:09] [server thread/INFO] [FML/]: Unloading dimension -1 [20:35:09] [server thread/INFO] [FML/]: Unloading dimension 1 [20:35:09] [server thread/DEBUG] [FML/]: Reverting to frozen data state. [20:35:09] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp [20:35:09] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,001s [20:35:09] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML [20:35:09] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s [20:35:09] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge [20:35:09] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,042s [20:35:09] [server thread/TRACE] [avaritia/avaritia]: Sending event FMLModIdMappingEvent to mod avaritia [20:35:09] [server thread/TRACE] [avaritia/avaritia]: Sent event FMLModIdMappingEvent to mod avaritia [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Avaritia took 0,000s [20:35:09] [server thread/TRACE] [JEI/JEI]: Sending event FMLModIdMappingEvent to mod JEI [20:35:09] [server thread/TRACE] [JEI/JEI]: Sent event FMLModIdMappingEvent to mod JEI [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Just Enough Items took 0,000s [20:35:09] [server thread/TRACE] [mantle/mantle]: Sending event FMLModIdMappingEvent to mod mantle [20:35:09] [server thread/TRACE] [mantle/mantle]: Sent event FMLModIdMappingEvent to mod mantle [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Mantle took 0,000s [20:35:09] [server thread/TRACE] [tconstruct/tconstruct]: Sending event FMLModIdMappingEvent to mod tconstruct [20:35:09] [server thread/TRACE] [tconstruct/tconstruct]: Sent event FMLModIdMappingEvent to mod tconstruct [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Tinkers' Construct took 0,000s [20:35:09] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,045s [20:35:09] [server thread/INFO] [FML/]: Applying holder lookups [20:35:09] [server thread/INFO] [FML/]: Holder lookups applied [20:35:09] [server thread/DEBUG] [FML/]: Frozen state restored. [20:35:09] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp [20:35:09] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Coder Pack took 0,000s [20:35:09] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML [20:35:09] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Forge Mod Loader took 0,000s [20:35:09] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge [20:35:09] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Forge took 0,000s [20:35:09] [server thread/TRACE] [avaritia/avaritia]: Sending event FMLServerStoppedEvent to mod avaritia [20:35:09] [server thread/TRACE] [avaritia/avaritia]: Sent event FMLServerStoppedEvent to mod avaritia [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Avaritia took 0,000s [20:35:09] [server thread/TRACE] [JEI/JEI]: Sending event FMLServerStoppedEvent to mod JEI [20:35:09] [server thread/TRACE] [JEI/JEI]: Sent event FMLServerStoppedEvent to mod JEI [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Just Enough Items took 0,000s [20:35:09] [server thread/TRACE] [mantle/mantle]: Sending event FMLServerStoppedEvent to mod mantle [20:35:09] [server thread/TRACE] [mantle/mantle]: Sent event FMLServerStoppedEvent to mod mantle [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Mantle took 0,000s [20:35:09] [server thread/TRACE] [tconstruct/tconstruct]: Sending event FMLServerStoppedEvent to mod tconstruct [20:35:09] [server thread/TRACE] [tconstruct/tconstruct]: Sent event FMLServerStoppedEvent to mod tconstruct [20:35:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Tinkers' Construct took 0,000s [20:35:09] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopped took 0,002s Here is my BlockResource code: package com.sathern.avaritia.block; import com.sathern.avaritia.Avaritia; import com.sathern.avaritia.lib.BlockResourceTypes; import com.sathern.avaritia.utils.EnumBlock; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyEnum; import net.minecraft.block.state.IBlockState; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.Entity; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; import javax.annotation.Nonnull; import java.util.List; public class BlockResource extends EnumBlock<BlockResourceTypes> { public static final PropertyEnum<BlockResourceTypes> TYPE = PropertyEnum.create("type", BlockResourceTypes.class); public BlockResource() { super(Material.IRON, TYPE, BlockResourceTypes.class); setSoundType(SoundType.METAL); setHardness(50.0F); setResistance(2000.0F); setUnlocalizedName("avaritia_resource"); setHarvestLevel("pickaxe", 3); setCreativeTab(Avaritia.tab); } @SideOnly(Side.CLIENT) @Override public void getSubBlocks(@Nonnull Item itemIn, CreativeTabs tab, List<ItemStack> list) { for (BlockResourceTypes type : BlockResourceTypes.values()) { list.add(new ItemStack(this, 1, type.getMeta())); } } @Override public boolean isBeaconBase(IBlockAccess worldObj, BlockPos pos, BlockPos beacon) { return true; } @Override public boolean canEntityDestroy(IBlockState state, IBlockAccess world, BlockPos pos, Entity entity) { return false; } } Here is my Utils code: package com.sathern.avaritia.utils; import com.sathern.avaritia.block.ItemBlockMeta; import net.minecraft.block.Block; import net.minecraft.block.properties.IProperty; import net.minecraft.client.Minecraft; import net.minecraft.item.ItemBlock; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.common.registry.GameRegistry; import net.minecraftforge.fml.common.registry.IForgeRegistryEntry; import java.util.Locale; public class Utils { public static Minecraft mc() { return Minecraft.getMinecraft(); } public static <T extends IForgeRegistryEntry<?>> T register(T thing, String name) { thing.setRegistryName(getResource(name)); GameRegistry.register(thing); return thing; } public static ResourceLocation getResource(String res) { return new ResourceLocation("avaritia", res); } public static String prefix(String name) { return String.format("%s.%s", "avaritia", name.toLowerCase(Locale.US)); } public static <T extends EnumBlock<?>> T registerEnumBlock(T block, String name) { registerBlock(block, new ItemBlockMeta(block), name); ItemBlockMeta.setMappingProperty(block, block.prop); return block; } public static <T extends Block> T registerBlock(T block, String name) { ItemBlock itemBlock = new ItemBlockMeta(block); registerBlock(block, itemBlock, name); return block; } public static <T extends Block> T registerBlock(ItemBlock itemBlock, String name) { Block block = itemBlock.getBlock(); return (T) registerBlock(block, itemBlock, name); } public static <T extends Block> T registerBlock(T block, String name, IProperty<?> property) { ItemBlockMeta itemBlock = new ItemBlockMeta(block); registerBlock(block, itemBlock, name); ItemBlockMeta.setMappingProperty(block, property); return block; } public static <T extends Block> T registerBlock(T block, ItemBlock itemBlock, String name) { if (!name.equals(name.toLowerCase(Locale.US))) { throw new IllegalArgumentException(String.format("Unlocalized names need to be all lowercase! Block: %s", name)); } String prefixedName = Utils.prefix(name); block.setUnlocalizedName(prefixedName); itemBlock.setUnlocalizedName(prefixedName); register(block, name); register(itemBlock, name); return block; } } My ModelRegistry code: package com.sathern.avaritia.utils; import com.sathern.avaritia.Lumberjack; import com.sathern.avaritia.block.ItemBlockMeta; import net.minecraft.block.Block; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; import net.minecraft.util.StringUtils; import net.minecraftforge.client.model.ModelLoader; import javax.annotation.Nonnull; public class ModelRegistry { public static final String VARIANT_INVENTORY = "inventory"; // Regular ITEM MODELS // /** * Registers the item-meta combo in the itemstack with the given location for the inventory-variant */ public static void registerItemModel(ItemStack itemStack, ResourceLocation name) { if (itemStack != null && name != null) { // tell the loader to load the model ModelLoader.registerItemVariants(itemStack.getItem(), name); // tell the game which model to use for this item-meta combination ModelLoader.setCustomModelResourceLocation(itemStack.getItem(), itemStack.getMetadata(), new ModelResourceLocation(name, VARIANT_INVENTORY)); } } /** * Registers the given item with its registry name for all metadata values for the inventory variant */ public static ResourceLocation registerItemModel(Item item) { ResourceLocation itemLocation = null; if (item != null) { itemLocation = item.getRegistryName(); } if (itemLocation != null) { itemLocation = registerIt(item, itemLocation); } return itemLocation; } /** * Registers the item of the given block with its registry name for all metadata values for the inventory variant */ public static ResourceLocation registerItemModel(Block block) { return registerItemModel(Item.getItemFromBlock(block)); } /** * Registers an itemblockmeta model for the blocks inventory variant. */ public static void registerItemBlockMeta(Block block) { if (block != null) { Item item = Item.getItemFromBlock(block); if (item instanceof ItemBlockMeta) { ((ItemBlockMeta) item).registerItemModels(); } else { Lumberjack.info("Trying to register an ItemBlockMeta model for a non itemblockmeta block: " + block.getRegistryName()); } } } /** * Registers the item with the given metadata and its registry name for the inventory variant */ public static void registerItemModel(Item item, int meta) { registerItemModel(item, meta, VARIANT_INVENTORY); } /** * Registers the given item with the given meta and its registry name for the given variant */ public static void registerItemModel(Item item, int meta, String variant) { if (item != null) { registerItemModel(item, meta, item.getRegistryName(), variant); } } /** * Registers the given item/meta combination with the model at the given location, and the given variant */ public static void registerItemModel(Item item, int meta, ResourceLocation location, String variant) { if (item != null && !StringUtils.isNullOrEmpty(variant)) { //ModelLoader.registerItemVariants(item, location); ModelLoader.setCustomModelResourceLocation(item, meta, new ModelResourceLocation(item.getRegistryName(), variant)); } } // INTERNAL // private static ResourceLocation registerIt(Item item, final ResourceLocation location) { // plop it in. // This here is needed for the model to be found ingame when the game looks for a model to render an Itemstack // we use an ItemMeshDefinition because it allows us to do it no matter what metadata we use ModelLoader.setCustomMeshDefinition(item, new ItemMeshDefinition() { @Nonnull @Override public ModelResourceLocation getModelLocation(@Nonnull ItemStack stack) { return new ModelResourceLocation(location, VARIANT_INVENTORY); } }); // We have to readd the default variant if we have custom variants, since it wont be added otherwise and therefore not loaded ModelLoader.registerItemVariants(item, location); return location; } } And my EnumBlock code: /** * Created by SlimeKnights */ import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyEnum; import net.minecraft.block.state.BlockStateContainer; import net.minecraft.block.state.IBlockState; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.IStringSerializable; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; import java.util.List; import javax.annotation.Nonnull; public class EnumBlock<E extends Enum<E> & EnumBlock.IEnumMeta & IStringSerializable> extends Block { public final PropertyEnum<E> prop; private final E[] values; protected static PropertyEnum<?> tmp; public EnumBlock(Material material, PropertyEnum<E> prop, Class<E> clazz) { super(preInit(material, prop)); this.prop = prop; values = clazz.getEnumConstants(); } private static Material preInit(Material material, PropertyEnum<?> property) { tmp = property; return material; } @SideOnly(Side.CLIENT) @Override public void getSubBlocks(@Nonnull Item itemIn, CreativeTabs tab, List<ItemStack> list) { for(E type : values) { list.add(new ItemStack(this, 1, type.getMeta())); } } @Nonnull @Override protected BlockStateContainer createBlockState() { if(prop == null) { return new BlockStateContainer(this, tmp); } return new BlockStateContainer(this, prop); } @Nonnull @Override public IBlockState getStateFromMeta(int meta) { return this.getDefaultState().withProperty(prop, fromMeta(meta)); } @Override public int getMetaFromState(IBlockState state) { return state.getValue(prop).getMeta(); } @Override public int damageDropped(IBlockState state) { return getMetaFromState(state); } protected E fromMeta(int meta) { if(meta < 0 || meta >= values.length) { meta = 0; } return values[meta]; } public interface IEnumMeta { int getMeta(); } } Is the code wrong or my java skills isn't good enough?
-
[Forge 1.10.2] Crashed while reloading textures
lethinh replied to lethinh's topic in Support & Bug Reports
Because disable the splash screen make the progress longer. -
[Forge 1.10.2] Crashed while reloading textures
lethinh replied to lethinh's topic in Support & Bug Reports
No not that. I said that. Doesn't disable the splash screen. Is there anyway else? -
[Forge 1.10.2] Crashed while reloading textures
lethinh replied to lethinh's topic in Support & Bug Reports
But instead of that is there any methods? (without buying a new pc, disabling the splash screen and upgrading to ubuntu). -
[Forge 1.10.2] Crashed while reloading textures
lethinh replied to lethinh's topic in Support & Bug Reports
But is there another way to fix it? -
Hello, guy. I am playing minecrat 1.7.10 then turn to 1.10.2. At the forge 1.10.2 splash screen using windows it says "Not Responding" but when i try forge 1.10 using ubuntu it works very well . I have tried put all the mods away but still doesn't works. While forge 1.7.10 splash screen still works fine. Here is my log (it doesn't have a crash report): Here is a video of it: How to fix this?
-
Hello, I created a block that have gui but it crashed. Here is my crash report: ---- Minecraft Crash Report ---- // Oops. Time: 16:05 22/12/2016 Description: Ticking player java.lang.NullPointerException: Ticking player at com.sathern.itweaks.gui.ContainerNeutron.canInteractWith(ContainerNeutron.java:47) at net.minecraft.entity.player.EntityPlayerMP.onUpdate(EntityPlayerMP.java:294) at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2111) at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:874) at net.minecraft.world.World.updateEntity(World.java:2078) at net.minecraft.world.WorldServer.tickPlayers(WorldServer.java:675) at net.minecraft.world.World.updateEntities(World.java:1867) at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:646) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:783) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:687) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:156) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:536) at java.lang.Thread.run(Thread.java:745) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Server thread Stacktrace: at com.sathern.itweaks.gui.ContainerNeutron.canInteractWith(ContainerNeutron.java:47) at net.minecraft.entity.player.EntityPlayerMP.onUpdate(EntityPlayerMP.java:294) at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2111) at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:874) at net.minecraft.world.World.updateEntity(World.java:2078) -- Player being ticked -- Details: Entity Type: null (net.minecraft.entity.player.EntityPlayerMP) Entity ID: 332 Entity Name: Player466 Entity's Exact location: -54,19, 63,00, 179,95 Entity's Block location: World: (-55,63,179), Chunk: (at 9,3,3 in -4,11; contains blocks -64,0,176 to -49,255,191), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511) Entity's Momentum: 0,00, -0,08, 0,00 Entity's Passengers: [] Entity's Vehicle: ~~ERROR~~ NullPointerException: null Stacktrace: at net.minecraft.world.WorldServer.tickPlayers(WorldServer.java:675) at net.minecraft.world.World.updateEntities(World.java:1867) at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:646) -- Affected level -- Details: Level name: New World All players: 1 total; [EntityPlayerMP['Player466'/332, l='New World', x=-54,19, y=63,00, z=179,95]] Chunk stats: ServerChunkCache: 372 Drop: 0 Level seed: -7818503990427167087 Level generator: ID 00 - default, ver 1. Features enabled: true Level generator options: Level spawn location: World: (-4,64,208), Chunk: (at 12,4,0 in -1,13; contains blocks -16,0,208 to -1,255,223), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511) Level time: 24414 game time, 1450 day time Level dimension: 0 Level storage version: 0x04ABD - Anvil Level weather: Rain time: 1654 (now: false), thunder time: 17872 (now: false) Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true Stacktrace: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:783) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:687) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:156) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:536) at java.lang.Thread.run(Thread.java:745) -- System Details -- Details: Minecraft Version: 1.10.2 Operating System: Windows 7 (x86) version 6.1 Java Version: 1.8.0_111, Oracle Corporation Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation Memory: 685354216 bytes (653 MB) / 1060372480 bytes (1011 MB) up to 1060372480 bytes (1011 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 15, tcache: 0, allocated: 13, tallocated: 95 FML: MCP 9.32 Powered by Forge 12.18.3.2185 7 mods loaded, 7 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHIJAAAA mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.10.2-12.18.3.2185.jar) UCHIJAAAA Forge{12.18.3.2185} [Minecraft Forge] (forgeSrc-1.10.2-12.18.3.2185.jar) UCHIJAAAA itweaks{1.0.0} [Avaritia] (bin) UCHIJAAAA JEI{3.13.6.392} [Just Enough Items] (jei_1.10.2-3.13.6.392.jar) UCHIJAAAA MineTweaker3{3.0.14} [MineTweaker 3] (CraftTweaker-1.10.2-3.0.15.jar) UCHIJAAAA ctgui{1.0.0} [CT-GUI] (CraftTweaker-1.10.2-3.0.15.jar) Loaded coremods (and transformers): Profiler Position: N/A (disabled) Player Count: 1 / 8; [EntityPlayerMP['Player466'/332, l='New World', x=-54,19, y=63,00, z=179,95]] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge' Here is my block code: package com.sathern.itweaks.blocks; import java.util.Random; import javax.annotation.Nullable; import com.sathern.itweaks.ImmersiveTweaks; import com.sathern.itweaks.tile.TileEntityNeutron; import net.minecraft.block.Block; import net.minecraft.block.BlockContainer; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; import net.minecraft.block.state.IBlockState; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemBlock; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumHand; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; import net.minecraft.world.World; public class BlockNeutronCollector extends BlockContainer { private Random randy = new Random(); public BlockNeutronCollector(String name) { super(Material.IRON); setSoundType(SoundType.METAL); setHardness(20.0F); setUnlocalizedName("neutron_collector"); setRegistryName("neutron_collector"); setHarvestLevel("pickaxe", 3); setCreativeTab(ImmersiveTweaks.modTab); } @Override public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, @Nullable ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) { if (world.isRemote) { return true; } else { player.openGui(ImmersiveTweaks.instance, 1, world, pos.getX(), pos.getY(), pos.getZ()); return true; } } @Override public TileEntity createNewTileEntity(World world, int meta) { return new TileEntityNeutron(); } public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase player, ItemStack item) { TileEntity tile = world.getTileEntity(new BlockPos(x, y, z)); if (tile instanceof TileEntityNeutron) { TileEntityNeutron machine = (TileEntityNeutron) tile; int l = MathHelper.floor_double((double) (player.rotationYaw * 4.0F / 360.0F) + 0.5D) & 3; if (l == 0) machine.setFacing(2); if (l == 1) machine.setFacing(5); if (l == 2) machine.setFacing(3); if (l == 3) machine.setFacing(4); } } public void breakBlock(World world, int x, int y, int z, IBlockState block) { TileEntityNeutron collector = (TileEntityNeutron) world.getTileEntity(new BlockPos(x, y, z)); if (collector != null) { ItemStack itemstack = collector.getStackInSlot(0); if (itemstack != null) { float f = this.randy.nextFloat() * 0.8F + 0.1F; float f1 = this.randy.nextFloat() * 0.8F + 0.1F; float f2 = this.randy.nextFloat() * 0.8F + 0.1F; while (itemstack.stackSize > 0) { int j1 = this.randy.nextInt(21) + 10; if (j1 > itemstack.stackSize) { j1 = itemstack.stackSize; } itemstack.stackSize -= j1; EntityItem entityitem = new EntityItem(world, (double) ((float) x + f), (double) ((float) y + f1), (double) ((float) z + f2), new ItemStack(itemstack.getItem(), j1, itemstack.getItemDamage())); if (itemstack.hasTagCompound()) { entityitem.getEntityItem().setTagCompound((NBTTagCompound) itemstack.getTagCompound().copy()); } float f3 = 0.05F; entityitem.motionX = (double) ((float) this.randy.nextGaussian() * f3); entityitem.motionY = (double) ((float) this.randy.nextGaussian() * f3 + 0.2F); entityitem.motionZ = (double) ((float) this.randy.nextGaussian() * f3); world.spawnEntityInWorld(entityitem); } } world.getBlockState(new BlockPos(x, y, z)); } super.breakBlock(world, new BlockPos(x, y, z), block); } public void registerItemModel(ItemBlock itemBlock) { ImmersiveTweaks.proxy.registerItemRenderer(itemBlock, 0, "block_crystal_matrix"); } } My container code: package com.sathern.itweaks.gui; import com.sathern.itweaks.blocks.ModBlocks; import com.sathern.itweaks.tile.TileEntityNeutron; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.inventory.Container; import net.minecraft.inventory.Slot; import net.minecraft.inventory.SlotFurnaceOutput; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; public class ContainerNeutron extends Container { private TileEntityNeutron tileNeutron; protected World worldObj; protected BlockPos pos; public ContainerNeutron(InventoryPlayer player, TileEntityNeutron machine) { this.tileNeutron = machine; this.addSlotToContainer(new SlotFurnaceOutput(player.player, machine, 2, 80, 35)); int i; for (i = 0; i < 3; ++i) { for (int j = 0; j < 9; ++j) { this.addSlotToContainer(new Slot(player, j + i * 9 + 9, 8 + j * 18, 84 + i * 18)); } } for (i = 0; i < 9; ++i) { this.addSlotToContainer(new Slot(player, i, 8 + i * 18, 142)); } } @Override /** * Called when the container is closed. */ public void onContainerClosed(EntityPlayer player) { super.onContainerClosed(player); } public boolean canInteractWith(EntityPlayer player) { return this.worldObj.getBlockState(pos) == ModBlocks.neutron_collector.getDefaultState() && player.getDistanceSq(pos) <= 64.0D; } /** * Called when a player shift-clicks on a slot. You must override this or * you will crash when someone does that. */ public ItemStack transferStackInSlot(EntityPlayer player, int slotNumber) { ItemStack itemstack = null; Slot slot = (Slot) this.inventorySlots.get(slotNumber); if (slot != null && slot.getHasStack()) { ItemStack itemstack1 = slot.getStack(); itemstack = itemstack1.copy(); if (slotNumber == 0) { if (!this.mergeItemStack(itemstack1, 1, 37, true)) { return null; } slot.onSlotChange(itemstack1, itemstack); } else { if (slotNumber >= 1 && slotNumber < 28) { if (!this.mergeItemStack(itemstack1, 28, 37, false)) { return null; } } else if (slotNumber >= 28 && slotNumber < 37 && !this.mergeItemStack(itemstack1, 1, 28, false)) { return null; } } if (itemstack1.stackSize == 0) { slot.putStack((ItemStack) null); } else { slot.onSlotChanged(); } if (itemstack1.stackSize == itemstack.stackSize) { return null; } slot.onPickupFromSlot(player, itemstack1); } return itemstack; } } My GUI code: package com.sathern.itweaks.gui; import org.lwjgl.opengl.GL11; import com.sathern.itweaks.ImmersiveTweaks; import com.sathern.itweaks.tile.TileEntityNeutron; import net.minecraft.client.gui.inventory.GuiContainer; import net.minecraft.entity.player.InventoryPlayer; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) public class GUINeutron extends GuiContainer { private static final ResourceLocation furnaceGuiTextures = new ResourceLocation(ImmersiveTweaks.modId, "textures/gui/neutron_collector_gui.png"); public GUINeutron(InventoryPlayer player, TileEntityNeutron machine) { super(new ContainerNeutron(player, machine)); } /** * Draw the foreground layer for the GuiContainer (everything in front of * the items) */ protected void drawGuiContainerForegroundLayer(int p_146979_1_, int p_146979_2_) { this.fontRendererObj.drawString("Neutron Collector", this.xSize / 2 - this.fontRendererObj.getStringWidth("Neutron Collector") / 2, 6, 4210752); this.fontRendererObj.drawString("Inventory", 8, this.ySize - 96 + 2, 4210752); } protected void drawGuiContainerBackgroundLayer(float p_146976_1_, int p_146976_2_, int p_146976_3_) { GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); this.mc.getTextureManager().bindTexture(furnaceGuiTextures); int k = (this.width - this.xSize) / 2; int l = (this.height - this.ySize) / 2; this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize); } } My Tile Entity Code: package com.sathern.itweaks.tile; import com.sathern.itweaks.items.ModItems; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.IInventory; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.math.BlockPos; public class TileEntityNeutron extends TileBase implements IInventory { private ItemStack neutrons; private int facing = 2; private int progress; @Override public void updateEntity() { if (++progress >= 7111) { // if(++progress >= 300){ if (neutrons == null) neutrons = new ItemStack(ModItems.neutron_pile); else if (neutrons.getItem() == ModItems.diamond_lattice && neutrons.getItemDamage() == 2 && neutrons.stackSize < 64) neutrons.stackSize++; progress = 0; markDirty(); } } public int getFacing() { return facing; } public void setFacing(int dir) { facing = dir; } @Override public void readCustomNBT(NBTTagCompound tag) { this.neutrons = ItemStack.loadItemStackFromNBT(tag.getCompoundTag("Neutrons")); this.progress = tag.getInteger("Progress"); this.facing = tag.getShort("Facing"); } @Override public void writeCustomNBT(NBTTagCompound tag) { tag.setInteger("Progress", this.progress); tag.setShort("Facing", (short) this.facing); if (neutrons != null) { NBTTagCompound produce = new NBTTagCompound(); neutrons.writeToNBT(produce); tag.setTag("Neutrons", produce); } else tag.removeTag("Neutrons"); } @Override public String getName() { return "container.neutron"; } @Override public boolean hasCustomName() { return false; } @Override public int getSizeInventory() { return 1; } @Override public ItemStack getStackInSlot(int index) { return neutrons; } @Override public ItemStack decrStackSize(int index, int count) { if (neutrons == null) return null; else { if (count < neutrons.stackSize) { ItemStack take = neutrons.splitStack(count); if (neutrons.stackSize <= 0) neutrons = null; return take; } else { ItemStack take = neutrons; neutrons = null; return take; } } } @Override public ItemStack removeStackFromSlot(int index) { return null; } @Override public void setInventorySlotContents(int index, ItemStack stack) { neutrons = stack; } @Override public int getInventoryStackLimit() { return 64; } @Override public boolean isUseableByPlayer(EntityPlayer player) { return this.worldObj .getTileEntity(new BlockPos(this.getPos().getX(), this.getPos().getY(), this.getPos().getX())) == this && player.getDistanceSq((double) this.getPos().getX() + 0.5D, (double) this.getPos().getY() + 0.5D, (double) this.getPos().getZ() + 0.5D) <= 64.0D; } @Override public void openInventory(EntityPlayer player) { } @Override public void closeInventory(EntityPlayer player) { } @Override public boolean isItemValidForSlot(int index, ItemStack stack) { return false; } @Override public int getField(int id) { return 0; } @Override public void setField(int id, int value) { } @Override public int getFieldCount() { return 0; } @Override public void clear() { } } My TileBase code: package com.sathern.itweaks.tile; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.network.NetworkManager; import net.minecraft.network.Packet; import net.minecraft.tileentity.TileEntity; public class TileBase extends TileEntity { @Override public NBTTagCompound writeToNBT(NBTTagCompound tag) { writeCustomNBT(tag); return super.writeToNBT(tag); } @Override public void readFromNBT(NBTTagCompound tag) { super.readFromNBT(tag); readCustomNBT(tag); } public void writeCustomNBT(NBTTagCompound tag) { } public void readCustomNBT(NBTTagCompound tag) { } public void updateEntity() { } /* * @Override public Packet getDescriptionPacket() { NBTTagCompound tag = new * NBTTagCompound(); writeCustomNBT(tag); return new * S35PacketUpdateTileEntity(xCoord, yCoord, zCoord, -999, tag); } */ /* * @Override public void onDataPacket(NetworkManager net, * S35PacketUpdateTileEntity packet) { super.onDataPacket(net, packet); * readCustomNBT(packet.func_148857_g()); } */ } I have registered the Gui Handler and the tile entiy and I am creating a port from avaritia mod. Does anyone know to fix this?