Jump to content

Villfuk02

Members
  • Posts

    301
  • Joined

  • Last visited

Everything posted by Villfuk02

  1. Seems like a lot has changed since 1.12, so I'm a bit confused and still can't get it to work, but this has still helped me, thanks I'll keep trying and send updates
  2. I'm trying to make a shapeless recipe where the input is one item with 3 nbt tags. If the first tag is 1 or less, it outputs the itemStack stored as the second tag. If the first tag is 2 or more, it outputs the more of the same item, but the first tag is 1 less. How would I go about making such a recipe?
  3. oh yeah, i tried to, does it work for items? If yes, HOW? I can't find anything on the internet
  4. It's simple: How can i set multiple different textures for model in code? I just could make 8000 models and set different textures in each one, but it seems little bit inefficient. thx in advance
  5. Thanks, i'll look at that tomorrow. But i'd like to ask AGAIN if you know any good way to make ITEM with model composed of other parts like Forge blockstate JSON allows. THAT's the reason i'm even trying to make this block. I have asked many times now on this forum and still no solution :(. For example Tinker's Constuct is mod entirely based on putting different parts together and it works. I just don't uderstand ANYTHING in the mod's code. Too advanced for me. SO PLEASE, do you know of any way to make it work even for item? THANKS in advance
  6. looks like we found the problem What can i do in order to reduce this but keep the possibility to store all the values and use them while rendering?
  7. it looks like it spends a lot of time in this loop: for (List < Comparable<? >> list : Cartesian.cartesianProduct(this.getAllowedValues())) { Map < IProperty<?>, Comparable<? >> map1 = MapPopulator. < IProperty<?>, Comparable<? >> createMap(this.properties.values(), list); BlockStateContainer.StateImplementation blockstatecontainer$stateimplementation = createState(blockIn, ImmutableMap.copyOf(map1), unlistedProperties); map2.put(map1, blockstatecontainer$stateimplementation); list1.add(blockstatecontainer$stateimplementation); } in BlockStateContainer class
  8. i calculated it myself, there is only 379080 combinations i thought of that too, but i don't think the process is too complicated for this to take longer than 10 minutes if it is stuck on that, can i somehow block combinations that will not be poosible in survival? that would reduce it to about 100 000
  9. It gets stuck at this line: detector_block = new DetectorBlock("detector_block"); just as exoected
  10. Main mod class package vms.archeology; import net.minecraft.creativetab.CreativeTabs; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.SidedProxy; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import vms.archeology.creativetabs.TabDeposites; import vms.archeology.creativetabs.TabItems; import vms.archeology.handlers.OreDictHandler; import vms.archeology.handlers.RecipeHandler; import vms.archeology.init.ModBlocks; import vms.archeology.init.ModItems; import vms.archeology.init.ModTools; import vms.archeology.proxy.CommonProxy; import vms.archeology.util.Utils; @Mod(modid = Reference.MODID, name = Reference.NAME, version = Reference.VERSION) public class Archeology { public static final CreativeTabs deposite = new TabDeposites(); public static final CreativeTabs item = new TabItems(); vms.archeology.handlers.EventHandler eventHandler = new vms.archeology.handlers.EventHandler(); @Mod.Instance(Reference.MODID) public static Archeology instance; @SidedProxy(serverSide = Reference.SERVER_PROXY_CLASS, clientSide = Reference.CLIENT_PROXY_CLASS) public static CommonProxy proxy; @EventHandler public void preInit(FMLPreInitializationEvent event){ Utils.getLogger().info("Registering Items"); ModItems.init(); ModBlocks.init(); ModTools.init(); ModItems.register(); ModBlocks.register(); ModTools.register(); proxy.registerRenders(); } @EventHandler public void init(FMLInitializationEvent event){ Utils.getLogger().info("Registering OreDictionary"); OreDictHandler.registerOreDict(); Utils.getLogger().info("Registering Events"); eventHandler.registerEvents(); proxy.init(); proxy.registerModelBakeryVariants(); } @EventHandler public void postInit(FMLPostInitializationEvent event){ Utils.getLogger().info("Registering Recipes"); RecipeHandler.registerCraftingRecipes(); RecipeHandler.registerSmeltingRecipes(); } } FML log [20:14:28] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. [20:14:28] [main/INFO] [FML/]: Forge Mod Loader version 13.20.0.2210 for Minecraft 1.11.2 loading [20:14:28] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_101, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_101\jre [20:14:28] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\Villfuk\Desktop\Archeology\bin;C:\Users\Villfuk\.gradle\caches\minecraft\net\minecraftforge\forge\1.11.2-13.20.0.2210\snapshot\20161220\forgeSrc-1.11.2-13.20.0.2210.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.24\889ff5477b844800cff734babbf42c1bbda4b10\authlib-1.5.24.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.13\bc40a390634d2ece4d89b9904101932a4de98588\realms-1.10.13.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.0.12_mojang\ba787e741efdc425fc5d2ea654b57c15fba27efa\fastutil-7.0.12_mojang.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\Villfuk\.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\Villfuk\.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\Villfuk\.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\Villfuk\.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\Villfuk\.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\Villfuk\.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\Villfuk\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\Villfuk\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\Villfuk\.gradle\caches\minecraft\net\minecraftforge\forge\1.11.2-13.20.0.2210\start [20:14:28] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jdk1.8.0_101\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\GtkSharp\2.12\bin;C:\Program Files\Git\cmd;C:\FFMPEG\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\GtkSharp\2.12\bin;C:\FFMPEG\bin;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WIND;.;C:/Users/Villfuk/.gradle/caches/minecraft/net/minecraft/natives/1.11.2 [20:14:28] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [20:14:28] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin [20:14:28] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers [20:14:28] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin [20:14:28] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin [20:14:28] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin [20:14:28] [main/DEBUG] [FML/]: All fundamental core mods are successfully located [20:14:28] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\Villfuk\Desktop\Archeology\run\. [20:14:28] [main/DEBUG] [FML/]: Discovering coremods [20:14:28] [main/DEBUG] [FML/]: Examining for coremod candidacy jei_1.11.2-4.2.2.215.jar [20:14:28] [main/DEBUG] [FML/]: Not found coremod data in jei_1.11.2-4.2.2.215.jar [20:14:28] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [20:14:28] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [20:14:28] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [20:14:28] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [20:14:28] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [20:14:28] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [20:14:28] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [20:14:28] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [20:14:28] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [20:14:28] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers [20:14:28] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer [20:14:29] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer [20:14:29] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer [20:14:29] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer [20:14:29] [main/DEBUG] [FML/]: Injection complete [20:14:29] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} [20:14:29] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin [20:14:29] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [20:14:30] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\Villfuk\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20161220\1.11.2\srgs\srg-mcp.srg with 33532 records [20:14:36] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing [20:14:36] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully [20:14:36] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [20:14:36] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers [20:14:36] [main/DEBUG] [FML/]: Injection complete [20:14:36] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} [20:14:36] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin [20:14:36] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully [20:14:36] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [20:14:36] [main/DEBUG] [FML/]: Loaded 190 rules from AccessTransformer config file forge_at.cfg [20:14:36] [main/DEBUG] [FML/]: Loaded 2 rules from AccessTransformer mod jar file C:\Users\Villfuk\Desktop\Archeology\run\mods\jei_1.11.2-4.2.2.215.jar!META-INF/jei_at.cfg [20:14:36] [main/DEBUG] [FML/]: Validating minecraft [20:14:39] [main/DEBUG] [FML/]: Minecraft validated, launching... [20:14:39] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [20:14:39] [main/DEBUG] [GradleStart/]: Reading CSV file: C:\Users\Villfuk\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20161220\fields.csv [20:14:39] [main/DEBUG] [GradleStart/]: Reading CSV file: C:\Users\Villfuk\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20161220\methods.csv [20:14:39] [main/INFO] [GradleStart/]: Remapping AccessTransformer rules... [20:14:39] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [20:14:39] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [20:14:39] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} [20:14:58] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot [20:14:58] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created [20:15:01] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.002s [20:15:02] [Client thread/INFO] [FML/]: MinecraftForge v13.20.0.2210 Initialized [20:15:02] [Client thread/INFO] [FML/]: Replaced 232 ore recipes [20:15:03] [Client thread/DEBUG] [FML/]: File C:\Users\Villfuk\Desktop\Archeology\run\config\injectedDependencies.json not found. No dependencies injected [20:15:03] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] [20:15:03] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes [20:15:03] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Villfuk\Desktop\Archeology\bin, examining for mod candidates [20:15:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.gradle\caches\minecraft\net\minecraftforge\forge\1.11.2-13.20.0.2210\snapshot\20161220\forgeSrc-1.11.2-13.20.0.2210.jar, examining for mod candidates [20:15:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.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:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.24\889ff5477b844800cff734babbf42c1bbda4b10\authlib-1.5.24.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.13\bc40a390634d2ece4d89b9904101932a4de98588\realms-1.10.13.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.0.12_mojang\ba787e741efdc425fc5d2ea654b57c15fba27efa\fastutil-7.0.12_mojang.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar [20:15:03] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.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:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar [20:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:03] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar [20:15:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar [20:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Villfuk\.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:15:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates [20:15:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Villfuk\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates [20:15:04] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Villfuk\.gradle\caches\minecraft\net\minecraftforge\forge\1.11.2-13.20.0.2210\start, examining for mod candidates [20:15:04] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully [20:15:04] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer [20:15:04] [Client thread/INFO] [FML/]: Searching C:\Users\Villfuk\Desktop\Archeology\run\mods for mods [20:15:04] [Client thread/DEBUG] [FML/]: Found a candidate mod directory BACCUP [20:15:04] [Client thread/DEBUG] [FML/]: Found a candidate zip or jar file jei_1.11.2-4.2.2.215.jar [20:15:04] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods [20:15:04] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/blockstates [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/lang [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/models [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/models/block [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/models/block/detector [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/models/item [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures/blocks [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures/items [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures/items/coin [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures/items/detector [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package assets/archeology/textures/items/food [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology [20:15:04] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (vms.archeology.Archeology) - loading [20:15:04] [Client thread/TRACE] [archeology/]: Parsed dependency info : [] [] [] [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/blocks [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/capabilities [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/creativetabs [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/handlers [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/init [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/items [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/items/artefacts [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/items/craftingMaterial [20:15:04] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/items/detector [20:15:05] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/proxy [20:15:05] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/util [20:15:05] [Client thread/TRACE] [FML/]: Recursing into package vms/archeology/worldgen [20:15:05] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.11.2-13.20.0.2210.jar for potential mods [20:15:05] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.11.2-13.20.0.2210.jar appears to be missing an mcmod.info file [20:15:08] [Client thread/DEBUG] [FML/]: Examining file jsr305-3.0.1.jar for potential mods [20:15:08] [Client thread/DEBUG] [FML/]: The mod container jsr305-3.0.1.jar appears to be missing an mcmod.info file [20:15:08] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods [20:15:08] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file [20:15:08] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods [20:15:08] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file [20:15:08] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods [20:15:08] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file [20:15:08] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods [20:15:08] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file [20:15:08] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods [20:15:08] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start [20:15:08] [Client thread/TRACE] [FML/]: Recursing into package net [20:15:08] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge [20:15:08] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle [20:15:08] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle/tweakers [20:15:08] [Client thread/DEBUG] [FML/]: Examining directory BACCUP for potential mods [20:15:08] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory BACCUP [20:15:08] [Client thread/DEBUG] [FML/]: Examining file jei_1.11.2-4.2.2.215.jar for potential mods [20:15:08] [Client thread/TRACE] [FML/]: Located mcmod.info file in file jei_1.11.2-4.2.2.215.jar [20:15:08] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (mezz.jei.JustEnoughItems) - loading [20:15:08] [Client thread/TRACE] [jei/]: Parsed dependency info : [forge@[13.19.0.2180,)] [forge@[13.19.0.2180,)] [] [20:15:09] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 6 mods to load [20:15:09] [Client thread/DEBUG] [FML/]: Found API mezz.jei.api (owned by jei providing JustEnoughItemsAPI) embedded in jei [20:15:09] [Client thread/DEBUG] [FML/]: Creating API container dummy for API JustEnoughItemsAPI: owner: jei, dependents: [] [20:15:09] [Client thread/TRACE] [FML/]: Received a system property request '' [20:15:09] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods [20:15:09] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods [20:15:09] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one [20:15:09] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one [20:15:09] [Client thread/DEBUG] [archeology/]: Enabling mod archeology [20:15:09] [Client thread/DEBUG] [Archeology/]: Mod Archeology is missing a pack.mcmeta file, substituting a dummy one [20:15:09] [Client thread/DEBUG] [jei/]: Enabling mod jei [20:15:09] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied [20:15:09] [Client thread/TRACE] [FML/]: All mod requirements are satisfied [20:15:09] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list [20:15:09] [Client thread/TRACE] [FML/]: Mod sorting completed successfully [20:15:09] [Client thread/DEBUG] [FML/]: Mod sorting data [20:15:09] [Client thread/DEBUG] [FML/]: archeology(Archeology:0.0.0 (Alpha)): bin () [20:15:09] [Client thread/DEBUG] [FML/]: jei(Just Enough Items:4.2.2.215): jei_1.11.2-4.2.2.215.jar (required-after:forge@[13.19.0.2180,);) [20:15:09] [Client thread/DEBUG] [FML/]: JustEnoughItemsAPI(API: JustEnoughItemsAPI:4.11.0): jei_1.11.2-4.2.2.215.jar () [20:15:09] [Client thread/DEBUG] [FML/]: Loading @Config anotation data [20:15:09] [Client thread/TRACE] [minecraft/minecraft]: Sending event FMLConstructionEvent to mod minecraft [20:15:09] [Client thread/TRACE] [minecraft/minecraft]: Sent event FMLConstructionEvent to mod minecraft [20:15:09] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft took 0.009s [20:15:09] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp [20:15:09] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp [20:15:09] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.001s [20:15:09] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML [20:15:10] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists [20:15:10] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection [20:15:10] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99) [20:15:10] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, archeology, jei] at CLIENT [20:15:10] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, archeology, jei] at SERVER [20:15:11] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML [20:15:11] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 2.374s [20:15:11] [Client thread/TRACE] [forge/forge]: Sending event FMLConstructionEvent to mod forge [20:15:11] [Client thread/DEBUG] [forge/forge]: Preloading CrashReport Classes [20:15:11] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$10 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$11 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$12 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$13 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$14 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$15 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$5 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$6 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$7 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$8 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/Minecraft$9 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/multiplayer/WorldClient$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/multiplayer/WorldClient$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/multiplayer/WorldClient$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/multiplayer/WorldClient$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/particle/ParticleManager$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/particle/ParticleManager$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/particle/ParticleManager$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/particle/ParticleManager$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/EntityRenderer$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/EntityRenderer$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/EntityRenderer$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/RenderGlobal$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/RenderItem$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/RenderItem$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/RenderItem$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/RenderItem$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/texture/TextureAtlasSprite$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/texture/TextureManager$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/texture/TextureMap$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/texture/TextureMap$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/client/renderer/texture/TextureMap$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReport$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReport$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReport$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReport$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReport$5 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReport$6 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReport$7 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReportCategory$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReportCategory$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReportCategory$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReportCategory$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/crash/CrashReportCategory$5 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/entity/Entity$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/entity/Entity$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/entity/Entity$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/entity/Entity$5 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/entity/EntityTracker$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/entity/player/InventoryPlayer$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/nbt/NBTTagCompound$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/nbt/NBTTagCompound$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/network/NetHandlerPlayServer$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/network/NetworkSystem$6 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/server/MinecraftServer$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/server/MinecraftServer$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/server/dedicated/DedicatedServer$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/server/dedicated/DedicatedServer$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/server/integrated/IntegratedServer$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/server/integrated/IntegratedServer$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/tileentity/CommandBlockBaseLogic$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/tileentity/CommandBlockBaseLogic$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/tileentity/TileEntity$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/tileentity/TileEntity$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/tileentity/TileEntity$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/World$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/World$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/World$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/World$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/World$5 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/chunk/Chunk$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/gen/structure/MapGenStructure$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/gen/structure/MapGenStructure$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/gen/structure/MapGenStructure$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/storage/WorldInfo$10 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/storage/WorldInfo$2 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/storage/WorldInfo$3 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/storage/WorldInfo$4 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/storage/WorldInfo$5 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/storage/WorldInfo$6 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/storage/WorldInfo$7 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/storage/WorldInfo$8 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraft/world/storage/WorldInfo$9 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraftforge/fml/client/SplashProgress$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraftforge/fml/common/FMLCommonHandler$1 [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraftforge/fml/common/ICrashCallable [20:15:12] [Client thread/DEBUG] [forge/forge]: net/minecraftforge/fml/common/Loader$3 [20:15:12] [Client thread/TRACE] [FML/forge]: Mod forge is using network checker : No network checking performed [20:15:12] [Client thread/TRACE] [FML/forge]: Testing mod forge to verify it accepts its own version in a remote connection [20:15:12] [Client thread/TRACE] [FML/forge]: The mod forge accepts its own version (13.20.0.2210) [20:15:12] [Client thread/DEBUG] [FML/forge]: Attempting to inject @Config classes into forge for type INSTANCE [20:15:12] [Client thread/TRACE] [forge/forge]: Sent event FMLConstructionEvent to mod forge [20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.363s [20:15:12] [Client thread/TRACE] [archeology/archeology]: Sending event FMLConstructionEvent to mod archeology [20:15:12] [Client thread/TRACE] [FML/archeology]: Mod archeology is using network checker : Accepting version 0.0.0 (Alpha) [20:15:12] [Client thread/TRACE] [FML/archeology]: Testing mod archeology to verify it accepts its own version in a remote connection [20:15:12] [Client thread/TRACE] [FML/archeology]: The mod archeology accepts its own version (0.0.0 (Alpha)) [20:15:12] [Client thread/DEBUG] [FML/archeology]: Attempting to inject @SidedProxy classes into archeology [20:15:12] [Client thread/DEBUG] [FML/archeology]: Attempting to inject @EventBusSubscriber classes into the eventbus for archeology [20:15:12] [Client thread/DEBUG] [FML/archeology]: Attempting to inject @Config classes into archeology for type INSTANCE [20:15:12] [Client thread/TRACE] [archeology/archeology]: Sent event FMLConstructionEvent to mod archeology [20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Archeology took 0.117s [20:15:12] [Client thread/TRACE] [jei/jei]: Sending event FMLConstructionEvent to mod jei [20:15:12] [Client thread/TRACE] [FML/jei]: Mod jei is using network checker : Invoking method checkModLists [20:15:12] [Client thread/TRACE] [FML/jei]: Testing mod jei to verify it accepts its own version in a remote connection [20:15:12] [Client thread/TRACE] [FML/jei]: The mod jei accepts its own version (4.2.2.215) [20:15:12] [Client thread/DEBUG] [FML/jei]: Attempting to inject @SidedProxy classes into jei [20:15:12] [Client thread/DEBUG] [FML/jei]: Attempting to inject @EventBusSubscriber classes into the eventbus for jei [20:15:12] [Client thread/DEBUG] [FML/jei]: Attempting to inject @Config classes into jei for type INSTANCE [20:15:12] [Client thread/TRACE] [jei/jei]: Sent event FMLConstructionEvent to mod jei [20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Just Enough Items took 0.271s [20:15:12] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 3.135s [20:15:12] [Client thread/DEBUG] [FML/]: Mod signature data [20:15:12] [Client thread/DEBUG] [FML/]: Valid Signatures: [20:15:12] [Client thread/DEBUG] [FML/]: Missing Signatures: [20:15:12] [Client thread/DEBUG] [FML/]: minecraft (Minecraft 1.11.2) minecraft.jar [20:15:12] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.19) minecraft.jar [20:15:12] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.11.2-13.20.0.2210.jar [20:15:12] [Client thread/DEBUG] [FML/]: forge (Minecraft Forge 13.20.0.2210) forgeSrc-1.11.2-13.20.0.2210.jar [20:15:12] [Client thread/DEBUG] [FML/]: archeology (Archeology 0.0.0 (Alpha)) bin [20:15:12] [Client thread/DEBUG] [FML/]: jei (Just Enough Items 4.2.2.215) jei_1.11.2-4.2.2.215.jar [20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.017s [20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.029s [20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.031s [20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Archeology took 0.013s [20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Just Enough Items took 0.007s [20:15:12] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.094s [20:15:12] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.095s [20:15:12] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.191s [20:15:12] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one [20:15:12] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one [20:15:12] [Client thread/DEBUG] [Archeology/]: Mod Archeology is missing a pack.mcmeta file, substituting a dummy one [20:15:13] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations [20:15:13] [Client thread/INFO] [FML/]: Found 444 ObjectHolder annotations [20:15:13] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations [20:15:13] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations [20:15:13] [Client thread/INFO] [FML/]: Applying holder lookups [20:15:13] [Client thread/INFO] [FML/]: Holder lookups applied [20:15:13] [Client thread/INFO] [FML/]: Applying holder lookups [20:15:13] [Client thread/INFO] [FML/]: Holder lookups applied [20:15:13] [Client thread/INFO] [FML/]: Applying holder lookups [20:15:13] [Client thread/INFO] [FML/]: Holder lookups applied [20:15:13] [Client thread/TRACE] [minecraft/minecraft]: Sending event FMLPreInitializationEvent to mod minecraft [20:15:13] [Client thread/TRACE] [minecraft/minecraft]: Sent event FMLPreInitializationEvent to mod minecraft [20:15:13] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft took 0.004s [20:15:13] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp [20:15:13] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp [20:15:13] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.001s [20:15:13] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML [20:15:13] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML [20:15:13] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.001s [20:15:13] [Client thread/TRACE] [forge/forge]: Sending event FMLPreInitializationEvent to mod forge [20:15:13] [Client thread/INFO] [FML/forge]: Configured a dormant chunk cache size of 0 [20:15:13] [Client thread/TRACE] [forge/forge]: Sent event FMLPreInitializationEvent to mod forge [20:15:13] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.363s [20:15:13] [Client thread/TRACE] [archeology/archeology]: Sending event FMLPreInitializationEvent to mod archeology [20:15:13] [Forge Version Check/INFO] [ForgeVersionCheck/forge]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [20:15:13] [Client thread/INFO] [archeology/archeology]: Registering Items [20:15:13] [Forge Version Check/DEBUG] [ForgeVersionCheck/forge]: [forge] Received version check data: { "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/", "promos": { "1.10-latest": "12.18.0.2000", "1.10.2-latest": "12.18.3.2239", "1.10.2-recommended": "12.18.3.2185", "1.11-latest": "13.19.1.2199", "1.11-recommended": "13.19.1.2189", "1.11.2-latest": "13.20.0.2253", "1.11.2-recommended": "13.20.0.2228", "1.5.2-latest": "7.8.1.738", "1.5.2-recommended": "7.8.1.737", "1.6.1-latest": "8.9.0.775", "1.6.2-latest": "9.10.1.871", "1.6.2-recommended": "9.10.1.871", "1.6.3-latest": "9.11.0.878", "1.6.4-latest": "9.11.1.1345", "1.6.4-recommended": "9.11.1.1345", "1.7.10-latest": "10.13.4.1614", "1.7.10-latest-1.7.10": "10.13.2.1343", "1.7.10-recommended": "10.13.4.1558", "1.7.2-latest": "10.12.2.1147", "1.7.2-recommended": "10.12.2.1121", "1.8-latest": "11.14.4.1577", "1.8-recommended": "11.14.4.1563", "1.8.8-latest": "11.15.0.1655", "1.8.9-latest": "11.15.1.1902", "1.8.9-recommended": "11.15.1.1722", "1.9-latest": "12.16.0.1942", "1.9-recommended": "12.16.1.1887", "1.9.4-latest": "12.17.0.2051", "1.9.4-recommended": "12.17.0.1976", "latest": "13.20.0.2253", "latest-1.7.10": "10.13.2.1343", "recommended": "13.20.0.2228" } } [20:15:13] [Forge Version Check/INFO] [ForgeVersionCheck/forge]: [forge] Found status: OUTDATED Target: 13.20.0.2228
  11. I'm trying to make new block with tons of blockstates and everything seems fine for me, but when i run the game it's stuck at preInit when registering tis block. It doesn't crash, doesn't write anything in consloe, it's just stuck. Block Class package vms.archeology.blocks; import net.minecraft.block.Block; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; import net.minecraft.block.properties.IProperty; import net.minecraft.block.properties.PropertyBool; import net.minecraft.block.properties.PropertyInteger; import net.minecraft.block.state.BlockStateContainer; import net.minecraft.block.state.IBlockState; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.NonNullList; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import net.minecraftforge.fml.common.registry.GameRegistry; import net.minecraftforge.oredict.ShapelessOreRecipe; import vms.archeology.Reference; import vms.archeology.handlers.EnumHandler.CoilTypes; import vms.archeology.handlers.EnumHandler.DisplayTypes; import vms.archeology.handlers.EnumHandler.RodTypes; import vms.archeology.handlers.EnumHandler.Types; import vms.archeology.handlers.EnumHandler.Types.BatteryTypes; import vms.archeology.init.ModItems; public class DetectorBlock extends Block{ public static PropertyBool found = PropertyBool.create("found"); public static PropertyInteger coil = PropertyInteger.create("coil", 0, CoilTypes.values().length -1); public static PropertyInteger battery = PropertyInteger.create("battery", 0, BatteryTypes.values().length -1); public static PropertyInteger rod = PropertyInteger.create("rod", 0, RodTypes.values().length -1); public static PropertyInteger display = PropertyInteger.create("display", 0, DisplayTypes.values().length -1); public static PropertyInteger distance = PropertyInteger.create("distance", 0, 3); public static PropertyInteger direction = PropertyInteger.create("direction", 0, 8); public static PropertyInteger type = PropertyInteger.create("type", 0, Types.values().length -1); public DetectorBlock(String unlocalizedName) { super(Material.GROUND); this.setUnlocalizedName(unlocalizedName); this.setRegistryName(new ResourceLocation(Reference.MODID, unlocalizedName)); this.setHardness(420.0f); this.setResistance(690.0f); this.setDefaultState(this.blockState.getBaseState().withProperty(found, false).withProperty(coil, 0).withProperty(battery, 0).withProperty(rod, 0).withProperty(display, 0).withProperty(distance, 0).withProperty(direction, 0).withProperty(type, 0)); this.setSoundType(SoundType.GROUND); } @Override protected net.minecraft.block.state.BlockStateContainer createBlockState() { return new BlockStateContainer(this, found, coil, battery, rod, display, distance, direction, type); } @Override public int getMetaFromState(IBlockState state) { return 0; } @Override public IBlockState getStateFromMeta(int meta) { return this.getDefaultState(); } @Override public ItemStack getPickBlock(IBlockState state, RayTraceResult target, World world, BlockPos pos, EntityPlayer player) { return new ItemStack(Item.getItemFromBlock(this), 1, 0); } @Override public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, BlockPos pos) { return state; } @Override public void getSubBlocks(Item itemIn, CreativeTabs tab, NonNullList<ItemStack> list) { list.add(new ItemStack(itemIn)); } } ModBlocks file called when preInitializing package vms.archeology.init; import net.minecraft.block.Block; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.init.Blocks; import net.minecraft.item.EnumRarity; import net.minecraft.item.Item; import net.minecraft.item.ItemBlock; import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.model.ModelLoader; import net.minecraftforge.fml.common.registry.GameRegistry; import vms.archeology.Archeology; import vms.archeology.Reference; import vms.archeology.blocks.ArcheologyDirt; import vms.archeology.blocks.DetectorBlock; import vms.archeology.blocks.EmeraldPumpkin; import vms.archeology.blocks.EmeraldStem; import vms.archeology.items.DepositeItemBlock; import vms.archeology.items.RarityItemBlock; import vms.archeology.items.detector.Detector; import vms.archeology.util.Utils; public class ModBlocks { public static Block archeology_dirt; public static Block emerald_pumpkin; public static Block emerald_stem; public static Block detector_block; public static void init () { archeology_dirt = new ArcheologyDirt("archeology_dirt"); emerald_pumpkin = new EmeraldPumpkin("emerald_pumpkin"); emerald_stem = new EmeraldStem("emerald_pumpkin_stem"); detector_block = new DetectorBlock("detector_block"); } public static void register() { registerBlock(detector_block, false); registerBlock(archeology_dirt, false, true); registerBlock(emerald_pumpkin, true, Utils.GREEN); registerBlock(emerald_stem, false); } public static void registerRenders() { for(int i = 0; i < 16; i++) { registerRender(archeology_dirt, i , "archeology_dirt"); } registerRender(emerald_pumpkin); registerRender(emerald_stem); registerRender(detector_block); } public static void registerBlock(Block block, Boolean item) { GameRegistry.register(block); GameRegistry.register(new ItemBlock(block).setRegistryName(block.getRegistryName())); if (item) block.setCreativeTab(Archeology.item); } public static void registerBlock(Block block, Boolean item, EnumRarity rarity) { GameRegistry.register(block); GameRegistry.register(new RarityItemBlock(block, rarity).setRegistryName(block.getRegistryName())); if (item) block.setCreativeTab(Archeology.item); } public static void registerBlock(Block block, Boolean item, Boolean deposite) { if (deposite) block.setCreativeTab(Archeology.deposite); if (item) block.setCreativeTab(Archeology.item); GameRegistry.register(block); if (deposite) GameRegistry.register(new DepositeItemBlock(block).setRegistryName(block.getRegistryName())); else GameRegistry.register(new ItemBlock(block).setRegistryName(block.getRegistryName())); } public static void registerRender(Block block) { ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(block), 0, new ModelResourceLocation(new ResourceLocation(Reference.MODID, block.getUnlocalizedName().substring(5)), "inventory")); } public static void registerRender(Block block, int meta, String fileName) { ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(block), meta, new ModelResourceLocation(new ResourceLocation(Reference.MODID, fileName), "inventory")); } } thanks for any help
  12. I have one last idea: I'll make block and the detector is going to be it's item. That could work
  13. I can merge models together with it
  14. but if i have different blockstates stored in a block, i can use Forge Blockstate JSON
  15. I started setting this up, and if i understand this correctly, you're just making multiple different models. I need one model for every combination - that makes 7 093 or 63 837 different models. (depends if i want one part to be visible or not) R E A L L Y N O T F E E L I N G U P T O I T R I G H T N O W . S O R R Y . That's the whole reason i was trying to use multipart / forge blockstate JSON Please correct me, if am i understanding this wrong
  16. Seriously, do you have ping like 20 000 000 miliseconds????? (approx. 5,5 hours) Or why are you answering something else than i asked?
  17. Ok, so what am i supposed to do? I can't use IItemWithMeshDefinition because it's your own interface, so will you please explain to me what am i supposed to do? Or should i just copy everything from you and try to stich it together myself using my own intuition?
  18. Hmmm, can i set different model locations with code? Btw, what is the ItemMeshDefinition for?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.