Jump to content

Elix_x

Members
  • Posts

    878
  • Joined

  • Last visited

Everything posted by Elix_x

  1. Well, it won't crash, but weird things will happen and bugs appear. Problem here is that message is written to bytebuf and sent, but is not received by client who is waiting for it.
  2. Hello everybody! I want to sync configs of my mod: when client connects, send him config and then he recieves and reads it. My config contains things, that if they are different on client and server, may crash mc. So i tried using LinkedBlockingQueue to block until configuration is recieved. But apparently, when WorldEvent.Load is fired on client side (last point where i must load from server's config), net thread is not yet started and message is not received and processed. So client just stops. How can i go about this? What should i do to sync configs between server and clients if they contain so important things? Thanks for help! If you have any questions - just ask!
  3. EnderIO does simlar things (p455w0rd already said), but it uses ASM. So, there's no way (besides ASMing RenderItem.renderItemOverlayIntoGUI ) to do this. @Forge: why forge hasn't added any hooks for this?
  4. public void init(FMLInitializationEvent event){ MinecraftForge.EVENT_BUS.register(new LastRenderWorldEvent()); for(ColoringToolProvider provider : ColoringToolsManager.getProviders()){ ModelResourceLocation def = provider.getDefaultModel(); if(def != null){ for(Item item : (Collection<Item>) ColoringToolsManager.getAllItems(provider)){ ModelLoader.setCustomModelResourceLocation(item, 0, def); Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, def); Minecraft.getMinecraft().getItemColors().registerItemColorHandler(new StandartColoringToolItemColor(0, 1), item); } } } }
  5. I will just say that adding Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, def); fixed everything (before i was using only ModelLoader.setCustomModelResourceLocation(item, 0, def); ). Now models work in init correctly. Thanks anyways!
  6. Thanks, i'll take a look at that. One thing though: my models are in jsons (because vanilla is enough).
  7. Good day everybody. I stumbled upon a problem today: why must we register models in pre init? Due to how my code works, i cannot register them in pre init. And if i register them in init, they don't work. I have a structure of dynamicaly generated items, depending on configuration and installed mods (including ones that use API to add different types of tool). Any mod can provide tool provider in pre-init and materials are loaded from jsons. Then in init, item for each tool for each material is generated and registered. (Up to this point, everything works). But when i try to register models in init, they don't work. If i move all item registries, and models in pre init, they work... But then nobody can use API, because it is setup and used entirely in pre init. So, why registering item models in init does not work? And what should i do? Note: while i can move materials from item instance to NBT, i cannot move tool types to NBT, as each tool may have different possible usage, thus different classes are needed. Thanks for help! If you have any questions - just ask!
  8. I18n.format (the I18n from net.minecraft.client.resources ). If you are not on the client: don't translate, the server does not know the client's language. But then what I18n in util.translation for? I don't think there is a replacement, ItemBow , which used it in vanilla, now has a for loop. And forge won't make one? (as helper class or as patch?)?
  9. That's what i decied to do. But does @API has any other purpose than adding it's classes in load order?
  10. I already googled that. Haven't found anything yet. Is this a rhetorical question? If not, no, it does not have to.
  11. So what do i do? I can remove API annotations temporarily, before i find better solution. Also, i did not know that forge sorts APIs to load after their mod owner. Now i understand why it's not sorting.
  12. I'll say it differently: how does one write mc forge API that depends on another mod, while this another mod is not marked as API (because basically, it is entirely an API, and i'm lazy to put package-info in all packages)?
  13. Hello everybody! This starts to get very annoying. Like very much. I have some APIs and some mods (while source code, because reasons) in my apis folder. My mod also provides an API. Whenever i try to launch the game, i get this: Whether i leave dependencies in my mod file, or remove them, this still happens. Logs: [17:03:46] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. [17:03:46] [main/INFO] [FML/]: Forge Mod Loader version 12.16.0.1865 for Minecraft 1.9 loading [17:03:46] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_73, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_73 [17:03:46] [main/DEBUG] [FML/]: Java classpath at launch is C:\my\mcmodding\mods\Forever Enough Items\1.9\bin;C:\my\mcmodding\mods\Forever Enough Items\1.9\.gradle\minecraft\forgeSrc-1.9-12.16.0.1865-1.9-PROJECT(1.9).jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\elix_x\.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\elix_x\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.7\b624280016616bb56cc6c30282684322edc7e7eb\realms-1.8.7.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\elix_x\.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\elix_x\.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\elix_x\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\elix_x\.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\elix_x\.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\elix_x\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\elix_x\.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\elix_x\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\elix_x\.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\elix_x\.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\elix_x\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\elix_x\.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\elix_x\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\elix_x\.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\elix_x\.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\elix_x\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\elix_x\.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\elix_x\.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\elix_x\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\elix_x\.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\elix_x\.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\elix_x\.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\elix_x\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar;C:\Users\elix_x\.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\elix_x\.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\elix_x\.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\elix_x\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\elix_x\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\elix_x\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.0.1865-1.9\start [17:03:46] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jre1.8.0_73\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre1.8.0_73/bin/server;C:/Program Files/Java/jre1.8.0_73/bin;C:/Program Files/Java/jre1.8.0_73/lib/amd64;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;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)\IVI Foundation\VISA\WinNT\Bin;C:\Program Files (x86)\Skype\Phone\;C:\my\lejos\leJOS EV3\bin;C:\my\programs\eclipse;;.;C:/Users/elix_x/.gradle/caches/minecraft/net/minecraft/natives/1.9 [17:03:46] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [17:03:46] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin [17:03:46] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers [17:03:46] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin [17:03:46] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin [17:03:46] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin [17:03:46] [main/DEBUG] [FML/]: All fundamental core mods are successfully located [17:03:46] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\my\mcmodding\mods\Forever Enough Items\1.9\run\. [17:03:46] [main/DEBUG] [FML/]: Discovering coremods [17:03:46] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [17:03:46] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [17:03:46] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [17:03:46] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:03:46] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [17:03:46] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [17:03:46] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:03:46] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:03:46] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:46] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers [17:03:46] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer [17:03:46] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer [17:03:46] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer [17:03:46] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer [17:03:46] [main/DEBUG] [FML/]: Injection complete [17:03:46] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} [17:03:46] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin [17:03:46] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [17:03:47] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\elix_x\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20160420\srgs\srg-mcp.srg with 31798 records [17:03:49] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing [17:03:49] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully [17:03:49] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:49] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers [17:03:49] [main/DEBUG] [FML/]: Injection complete [17:03:49] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} [17:03:49] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin [17:03:49] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully [17:03:49] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [17:03:49] [main/DEBUG] [FML/]: Loaded 188 rules from AccessTransformer config file forge_at.cfg [17:03:49] [main/DEBUG] [FML/]: Validating minecraft [17:03:51] [main/DEBUG] [FML/]: Minecraft validated, launching... [17:03:51] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [17:03:51] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [17:03:51] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [17:03:51] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} [17:04:01] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot [17:04:01] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created [17:04:03] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0,002s [17:04:03] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:200]: ---- Minecraft Crash Report ---- // Oh - I know what I did wrong! Time: 23.04.16 17:04 Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.9 Operating System: Windows 7 (amd64) version 6.1 Java Version: 1.8.0_73, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 473802864 bytes (451 MB) / 671612928 bytes (640 MB) up to 1717043200 bytes (1637 MB) JVM Flags: 0 total; IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.4.13084 Compatibility Profile Context 14.301.1001.0' Renderer: 'AMD Radeon HD 8570D' [17:04:03] [Client thread/INFO] [FML/]: MinecraftForge v12.16.0.1865 Initialized [17:04:03] [Client thread/INFO] [FML/]: Replaced 207 ore recipes [17:04:04] [Client thread/DEBUG] [FML/]: File C:\my\mcmodding\mods\Forever Enough Items\1.9\run\config\injectedDependencies.json not found. No dependencies injected [17:04:04] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] [17:04:04] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\my\mcmodding\mods\Forever Enough Items\1.9\bin, examining for mod candidates [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\my\mcmodding\mods\Forever Enough Items\1.9\.gradle\minecraft\forgeSrc-1.9-12.16.0.1865-1.9-PROJECT(1.9).jar, examining for mod candidates [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar, examining for mod candidates [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar, examining for mod candidates [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar, examining for mod candidates [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.7\b624280016616bb56cc6c30282684322edc7e7eb\realms-1.8.7.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar, examining for mod candidates [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\elix_x\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar, examining for mod candidates [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\elix_x\.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 [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\elix_x\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\elix_x\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates [17:04:04] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\elix_x\.gradle\caches\minecraft\net\minecraftforge\forge\1.9-12.16.0.1865-1.9\start, examining for mod candidates [17:04:04] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully [17:04:04] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer [17:04:04] [Client thread/INFO] [FML/]: Searching C:\my\mcmodding\mods\Forever Enough Items\1.9\run\mods for mods [17:04:04] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods [17:04:04] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.cei [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.cei.lang [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.fei [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.fei.lang [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.fei.textures [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.fei.textures.cursors [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.fei.textures.icons [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.jei [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.jei.lang [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.jei.textures [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.jei.textures.gui [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.llor [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.llor.lang [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package assets.llor.textures [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package cei [17:04:04] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (cei.ChunkEdgeIndicator) - loading [17:04:04] [Client thread/TRACE] [cei/]: Parsed dependency info : [] [] [] [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore [17:04:04] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (code.elix_x.excore.EXCore) - loading [17:04:04] [Client thread/TRACE] [excore/]: Parsed dependency info : [] [] [] [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.arrays [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.client [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.client.cursor [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.client.gui [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.client.gui.elements [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.client.render [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.color [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.data [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.items [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.lists [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.math [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.nbt [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.nbt.mbt [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.nbt.mbt.encoders [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.packets [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.packets.runnable [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.pos [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.proxy [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.random [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.recipes [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.reflection [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.shape3d [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.excore.utils.vecs [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.api [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.api.gui [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.api.gui.elements [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.api.permission [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.api.profile [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.api.utils [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.capabilities [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.client [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.client.events [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.client.gui [17:04:04] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.client.gui.element [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.client.jeioverride [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.command [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.config [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.events [17:04:05] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (code.elix_x.mods.fei.ForeverEnoughItemsBase) - loading [17:04:05] [Client thread/TRACE] [FEI/]: Parsed dependency info : [] [] [] [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.net [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.permission [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.proxy [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package code.elix_x.mods.fei.utils [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package com [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package com.mmyzd [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package com.mmyzd.llor [17:04:05] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.mmyzd.llor.LightLevelOverlayReloaded) - loading [17:04:05] [Client thread/TRACE] [llor/]: Parsed dependency info : [] [] [] [17:04:05] [Client thread/INFO] [llor/]: Mod llor is missing the required element 'name'. Substituting llor [17:04:05] [Client thread/DEBUG] [llor/]: Attempting to load the file version.properties from bin to locate a version number for llor [17:04:05] [Client thread/WARN] [llor/]: Mod llor is missing the required element 'version' and no fallback can be found. Substituting '1.0'. [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.api [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.api.gui [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.api.recipe [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.api.recipe.transfer [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.api.recipe.wrapper [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.config [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.debug [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.gui [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.gui.ingredients [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.input [17:04:05] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (mezz.jei.JustEnoughItems) - loading [17:04:05] [Client thread/TRACE] [JEI/]: Parsed dependency info : [Forge@[12.16.0.1865,)] [Forge@[12.16.0.1865,)] [] [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.network [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.network.packets [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.plugins [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.plugins.jei [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.plugins.jei.debug [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.plugins.jei.description [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.plugins.vanilla [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.plugins.vanilla.brewing [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.plugins.vanilla.crafting [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.plugins.vanilla.furnace [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.transfer [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.util [17:04:05] [Client thread/TRACE] [FML/]: Recursing into package mezz.jei.util.color [17:04:05] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.9-12.16.0.1865-1.9-PROJECT(1.9).jar for potential mods [17:04:05] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.9-12.16.0.1865-1.9-PROJECT(1.9).jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining file oshi-core-1.1.jar for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: The mod container oshi-core-1.1.jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining file jna-3.4.0.jar for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: The mod container jna-3.4.0.jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining file platform-3.4.0.jar for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: The mod container platform-3.4.0.jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining file jline-2.13.jar for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: The mod container jline-2.13.jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file [17:04:06] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods [17:04:06] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start [17:04:06] [Client thread/TRACE] [FML/]: Recursing into package net [17:04:06] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge [17:04:06] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle [17:04:07] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers [17:04:07] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 8 mods to load [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api (owned by FEI providing FEI API) embedded in cei [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api (owned by FEI providing FEI API) embedded in excore [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api (owned by FEI providing FEI API) embedded in FEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api (owned by FEI providing FEI API) embedded in llor [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api (owned by FEI providing FEI API) embedded in JEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.utils (owned by FEI providing FEI API | Utils) embedded in cei [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.utils (owned by FEI providing FEI API | Utils) embedded in excore [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.utils (owned by FEI providing FEI API | Utils) embedded in FEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.utils (owned by FEI providing FEI API | Utils) embedded in llor [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.utils (owned by FEI providing FEI API | Utils) embedded in JEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API mezz.jei.api (owned by JEI providing JustEnoughItemsAPI) embedded in cei [17:04:07] [Client thread/DEBUG] [FML/]: Found API mezz.jei.api (owned by JEI providing JustEnoughItemsAPI) embedded in excore [17:04:07] [Client thread/DEBUG] [FML/]: Found API mezz.jei.api (owned by JEI providing JustEnoughItemsAPI) embedded in FEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API mezz.jei.api (owned by JEI providing JustEnoughItemsAPI) embedded in llor [17:04:07] [Client thread/DEBUG] [FML/]: Found API mezz.jei.api (owned by JEI providing JustEnoughItemsAPI) embedded in JEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.gui (owned by FEI providing FEI API | GUIs) embedded in cei [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.gui (owned by FEI providing FEI API | GUIs) embedded in excore [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.gui (owned by FEI providing FEI API | GUIs) embedded in FEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.gui (owned by FEI providing FEI API | GUIs) embedded in llor [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.gui (owned by FEI providing FEI API | GUIs) embedded in JEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.profile (owned by FEI providing FEI API | Profiles) embedded in cei [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.profile (owned by FEI providing FEI API | Profiles) embedded in excore [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.profile (owned by FEI providing FEI API | Profiles) embedded in FEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.profile (owned by FEI providing FEI API | Profiles) embedded in llor [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.profile (owned by FEI providing FEI API | Profiles) embedded in JEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.permission (owned by FEI providing FEI API | Permissions) embedded in cei [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.permission (owned by FEI providing FEI API | Permissions) embedded in excore [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.permission (owned by FEI providing FEI API | Permissions) embedded in FEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.permission (owned by FEI providing FEI API | Permissions) embedded in llor [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.permission (owned by FEI providing FEI API | Permissions) embedded in JEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.gui.elements (owned by FEI providing FEI API | GUIs | Elements) embedded in cei [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.gui.elements (owned by FEI providing FEI API | GUIs | Elements) embedded in excore [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.gui.elements (owned by FEI providing FEI API | GUIs | Elements) embedded in FEI [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.gui.elements (owned by FEI providing FEI API | GUIs | Elements) embedded in llor [17:04:07] [Client thread/DEBUG] [FML/]: Found API code.elix_x.mods.fei.api.gui.elements (owned by FEI providing FEI API | GUIs | Elements) embedded in JEI [17:04:07] [Client thread/DEBUG] [FML/]: Creating API container dummy for API FEI API: owner: FEI, dependents: [cei, excore, llor, JEI] [17:04:07] [Client thread/DEBUG] [FML/]: Creating API container dummy for API JustEnoughItemsAPI: owner: JEI, dependents: [cei, excore, FEI, llor] [17:04:07] [Client thread/DEBUG] [FML/]: Creating API container dummy for API FEI API | GUIs | Elements: owner: FEI, dependents: [cei, excore, llor, JEI] [17:04:07] [Client thread/DEBUG] [FML/]: Creating API container dummy for API FEI API | Utils: owner: FEI, dependents: [cei, excore, llor, JEI] [17:04:07] [Client thread/DEBUG] [FML/]: Creating API container dummy for API FEI API | Permissions: owner: FEI, dependents: [cei, excore, llor, JEI] [17:04:07] [Client thread/DEBUG] [FML/]: Creating API container dummy for API FEI API | Profiles: owner: FEI, dependents: [cei, excore, llor, JEI] [17:04:07] [Client thread/DEBUG] [FML/]: Creating API container dummy for API FEI API | GUIs: owner: FEI, dependents: [cei, excore, llor, JEI] [17:04:07] [Client thread/TRACE] [FML/]: Received a system property request '' [17:04:07] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods [17:04:07] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods [17:04:07] [Client thread/DEBUG] [cei/]: Enabling mod cei [17:04:07] [Client thread/DEBUG] [excore/]: Enabling mod excore [17:04:07] [Client thread/DEBUG] [FEI/]: Enabling mod FEI [17:04:07] [Client thread/DEBUG] [llor/]: Enabling mod llor [17:04:07] [Client thread/DEBUG] [JEI/]: Enabling mod JEI [17:04:07] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied [17:04:07] [Client thread/TRACE] [FML/]: All mod requirements are satisfied [17:04:07] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list [17:04:07] [Client thread/ERROR] [FML/]: Mod Sorting failed. [17:04:07] [Client thread/ERROR] [FML/]: Visiting node APIContainer{FEI API:1.0} [17:04:07] [Client thread/ERROR] [FML/]: Current sorted list : [Dummy Container (BeforeAll) @1417494158, Wrapped{mcp}, Wrapped{FML}, Wrapped{Forge}, Dummy Container (Before) @907116387] [17:04:07] [Client thread/ERROR] [FML/]: Visited set for this node : [Dummy Container (Before) @907116387, Wrapped{FML}, Dummy Container (BeforeAll) @1417494158, Wrapped{Forge}, APIContainer{JustEnoughItemsAPI:3.1.0}, FMLMod:FEI{1.0}, FMLMod:JEI{@VERSION@}, FMLMod:cei{1.1}, Dummy Container (After) @1441625830, Dummy Container (AfterAll) @304580138, Wrapped{mcp}, APIContainer{FEI API:1.0}] [17:04:07] [Client thread/ERROR] [FML/]: Explored node set : [Wrapped{FML}, Dummy Container (Before) @907116387, Dummy Container (BeforeAll) @1417494158, Wrapped{Forge}, Wrapped{mcp}] [17:04:07] [Client thread/ERROR] [FML/]: Likely cycle is in : [APIContainer{JustEnoughItemsAPI:3.1.0}, FMLMod:FEI{1.0}, FMLMod:JEI{@VERSION@}, FMLMod:cei{1.1}, Dummy Container (After) @1441625830, Dummy Container (AfterAll) @304580138, APIContainer{FEI API:1.0}] [17:04:07] [Client thread/ERROR] [FML/]: A dependency cycle was detected in the input mod set so an ordering cannot be determined [17:04:07] [Client thread/ERROR] [FML/]: The first mod in the cycle is APIContainer{FEI API:1.0} [17:04:07] [Client thread/ERROR] [FML/]: The mod cycle involves [17:04:07] [Client thread/ERROR] [FML/]: APIContainer{JustEnoughItemsAPI:3.1.0} : before: [cei, excore, FEI, llor], after: [JEI] [17:04:07] [Client thread/ERROR] [FML/]: FMLMod:FEI{1.0} : before: [], after: [] [17:04:07] [Client thread/ERROR] [FML/]: FMLMod:JEI{@VERSION@} : before: [], after: [Forge@[12.16.0.1865,)] [17:04:07] [Client thread/ERROR] [FML/]: FMLMod:cei{1.1} : before: [], after: [] [17:04:07] [Client thread/ERROR] [FML/]: Dummy Container (After) @1441625830 : before: [], after: [] [17:04:07] [Client thread/ERROR] [FML/]: Dummy Container (AfterAll) @304580138 : before: [], after: [] [17:04:07] [Client thread/ERROR] [FML/]: APIContainer{FEI API:1.0} : before: [cei, excore, llor, JEI], after: [FEI] [17:04:07] [Client thread/ERROR] [FML/]: The full error net.minecraftforge.fml.common.toposort.ModSortingException: There was a cycle detected in the input graph, sorting is not possible A dependency cycle was detected in the input mod set so an ordering cannot be determined The first mod in the cycle is APIContainer{FEI API:1.0} The mod cycle involves: APIContainer{JustEnoughItemsAPI:3.1.0} : before: [cei, excore, FEI, llor], after: [JEI] FMLMod:FEI{1.0} : before: [], after: [] FMLMod:JEI{@VERSION@} : before: [], after: [Forge@[12.16.0.1865,)] FMLMod:cei{1.1} : before: [], after: [] Dummy Container (After) @1441625830 : before: [], after: [] Dummy Container (AfterAll) @304580138 : before: [], after: [] APIContainer{FEI API:1.0} : before: [cei, excore, llor, JEI], after: [FEI] at net.minecraftforge.fml.common.toposort.TopologicalSort.explore(TopologicalSort.java:190) ~[TopologicalSort.class:?] at net.minecraftforge.fml.common.toposort.TopologicalSort.explore(TopologicalSort.java:199) ~[TopologicalSort.class:?] at net.minecraftforge.fml.common.toposort.TopologicalSort.explore(TopologicalSort.java:199) ~[TopologicalSort.class:?] at net.minecraftforge.fml.common.toposort.TopologicalSort.explore(TopologicalSort.java:199) ~[TopologicalSort.class:?] at net.minecraftforge.fml.common.toposort.TopologicalSort.explore(TopologicalSort.java:199) ~[TopologicalSort.class:?] at net.minecraftforge.fml.common.toposort.TopologicalSort.explore(TopologicalSort.java:199) ~[TopologicalSort.class:?] at net.minecraftforge.fml.common.toposort.TopologicalSort.explore(TopologicalSort.java:199) ~[TopologicalSort.class:?] at net.minecraftforge.fml.common.toposort.TopologicalSort.explore(TopologicalSort.java:199) ~[TopologicalSort.class:?] at net.minecraftforge.fml.common.toposort.TopologicalSort.topologicalSort(TopologicalSort.java:145) ~[TopologicalSort.class:?] at net.minecraftforge.fml.common.toposort.ModSorter.sort(ModSorter.java:133) ~[ModSorter.class:?] at net.minecraftforge.fml.common.Loader.sortModList(Loader.java:271) [Loader.class:?] at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:492) [Loader.class:?] at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:205) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:472) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_73] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73] 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_73] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_73] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_73] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] [17:04:07] [Client thread/DEBUG] [FML/]: Mod sorting data [17:04:07] [Client thread/DEBUG] [FML/]: cei(ChunkEdgeIndicator:1.1): bin () [17:04:07] [Client thread/DEBUG] [FML/]: excore(EXCore:1.4.1): bin () [17:04:07] [Client thread/DEBUG] [FML/]: FEI(Forever Enough Items:1.0): bin () [17:04:07] [Client thread/DEBUG] [FML/]: llor(llor:1.0): bin () [17:04:07] [Client thread/DEBUG] [FML/]: JEI(Just Enough Items:@VERSION@): bin (required-after:Forge@[12.16.0.1865,) [17:04:07] [Client thread/DEBUG] [FML/]: FEI API(API: FEI API:1.0): bin () [17:04:07] [Client thread/DEBUG] [FML/]: JustEnoughItemsAPI(API: JustEnoughItemsAPI:3.1.0): bin () [17:04:07] [Client thread/DEBUG] [FML/]: FEI API | GUIs | Elements(API: FEI API | GUIs | Elements:1.0): bin () [17:04:07] [Client thread/DEBUG] [FML/]: FEI API | Utils(API: FEI API | Utils:1.0): bin () [17:04:07] [Client thread/DEBUG] [FML/]: FEI API | Permissions(API: FEI API | Permissions:1.0): bin () [17:04:07] [Client thread/DEBUG] [FML/]: FEI API | Profiles(API: FEI API | Profiles:1.0): bin () [17:04:07] [Client thread/DEBUG] [FML/]: FEI API | GUIs(API: FEI API | GUIs:1.0): bin () [17:04:07] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,013s [17:04:07] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,020s [17:04:07] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,017s [17:04:07] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:ChunkEdgeIndicator took 0,007s [17:04:07] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:EXCore took 0,002s [17:04:07] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forever Enough Items took 0,002s [17:04:07] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:llor took 0,002s [17:04:07] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Just Enough Items took 0,002s [17:04:07] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0,083s [17:04:07] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0,084s [17:04:07] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0,150s [17:04:07] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one [17:04:07] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one [17:04:07] [Client thread/DEBUG] [ChunkEdgeIndicator/]: Mod ChunkEdgeIndicator is missing a pack.mcmeta file, substituting a dummy one [17:04:07] [Client thread/DEBUG] [EXCore/]: Mod EXCore is missing a pack.mcmeta file, substituting a dummy one [17:04:07] [Client thread/DEBUG] [Forever Enough Items/]: Mod Forever Enough Items is missing a pack.mcmeta file, substituting a dummy one [17:04:07] [Client thread/DEBUG] [llor/]: Mod llor is missing a pack.mcmeta file, substituting a dummy one [17:04:07] [Client thread/DEBUG] [Just Enough Items/]: Mod Just Enough Items is missing a pack.mcmeta file, substituting a dummy one [17:04:07] [Client thread/WARN] [FML/]: There were errors previously. Not beginning mod initialization phase [17:04:07] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0,000s [17:04:13] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 5,965s [17:04:13] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,007s [17:04:13] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,004s [17:04:13] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0,018s [17:04:13] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0,013s [17:04:13] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0,004s [17:04:13] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0,013s [17:04:14] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - B3DLoader took 0,000s [17:04:14] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - OBJLoader took 0,000s [17:04:14] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0,000s [17:04:14] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0,000s [17:04:14] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0,000s [17:04:14] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0,000s [17:04:20] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 6,223s [17:04:23] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 2,542s [17:04:23] [Client thread/INFO] [FML/]: Max texture size: 16384 [17:04:23] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,003s [17:04:23] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,004s [17:04:23] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload - missingno took 0,006s [17:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 1,351s [17:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 10,771s [17:04:24] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 11,024s [17:04:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0,007s [17:04:25] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0,879s [17:04:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0,000s [17:04:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0,000s [17:04:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0,000s [17:04:26] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0,523s [17:04:26] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 12,443s [code] Thanks for help! If you have any questions - just ask!
  14. Alright, that explains everything... And it's working... Here's working code, if you're interested: public static final Cursor defaultCursor; public static final Cursor moveCursor; public static final Cursor resizeCursor; static { defaultCursor = Mouse.getNativeCursor(); try { BufferedImage image = ImageIO.read(Minecraft.getMinecraft().getResourceManager().getResource(new ResourceLocation(ForeverEnoughItemsBase.MODID, "textures/cursors/move.png")).getInputStream()); moveCursor = new Cursor(image.getWidth(), image.getHeight(), image.getWidth() / 2, image.getHeight() / 2, 1, IntBuffer.wrap(image.getRGB(0, 0, image.getWidth(), image.getHeight(), null, 0, image.getWidth())), null); } catch(Exception e){ throw Throwables.propagate(e); } try { BufferedImage image = ImageIO.read(Minecraft.getMinecraft().getResourceManager().getResource(new ResourceLocation(ForeverEnoughItemsBase.MODID, "textures/cursors/resize.png")).getInputStream()); resizeCursor = new Cursor(image.getWidth(), image.getHeight(), image.getWidth() / 2, image.getHeight() / 2, 1, IntBuffer.wrap(image.getRGB(0, 0, image.getWidth(), image.getHeight(), null, 0, image.getWidth())), null); } catch(Exception e){ throw Throwables.propagate(e); } } public static void setCursor(Cursor cursor){ try { Mouse.setNativeCursor(cursor); } catch(LWJGLException e){ Throwables.propagate(e); } } I'm going to go rage quit now.
  15. I have been googling whole day, and all results are either for swing, or not for something else but lwjgl. There were couple that were for lwjgl, but they aren't working. Meanwhile, i found that in native open gl, there is GLUT, with [url=https://www.opengl.org/documentation/specs/glut/spec3/node28.html]glutSetCursor[/url] . Meanwhile, whole GLUT is not ported to java by LWJGL and nobody knows why. Thanks for help anyways! Maybe somebody else will be able to help.
  16. Made some progress, still not working: . Code: ResourceLocation texture = new ResourceLocation(ForeverEnoughItemsBase.MODID, "textures/cursors/move.png"); InputStream s = Minecraft.getMinecraft().getResourceManager().getResource(texture).getInputStream(); BufferedImage image = ImageIO.read(s); ImageIO.write(image, "png", new File("move.png")); IntBuffer buf = IntBuffer.allocate(image.getWidth() * image.getHeight() * 4); for(int x = 0; x < image.getWidth(); x++){ for(int y = 0; y < image.getHeight(); y++){ int offset = x * (y * image.getHeight()) * 4; int argb = image.getRGB(x, y); buf.put(argb); } } buf.rewind(); moveCursor = new Cursor(23, 23, 11, 11, 1, buf, null);
  17. Show your whole method where you set flight speed.
  18. Well, that didn't work. Code: public static final Cursor defaultCursor; public static final Cursor moveCursor; public static final Cursor resizeCursor; static { defaultCursor = Mouse.getNativeCursor(); try { ResourceLocation texture = new ResourceLocation(ForeverEnoughItemsBase.MODID, "textures/cursors/move.png"); InputStream s = Minecraft.getMinecraft().getResourceManager().getResource(texture).getInputStream(); ByteArrayOutputStream bout = new ByteArrayOutputStream(); IOUtils.copy(s, bout); byte[] b = bout.toByteArray(); IntBuffer buf = ByteBuffer.wrap(b).asIntBuffer(); moveCursor = new Cursor(23, 23, 11, 11, 1, buf, null); } catch(Exception e){ throw Throwables.propagate(e); } /*try { ResourceLocation texture = new ResourceLocation(ForeverEnoughItemsBase.MODID, "textures/cursors/resize.png"); InputStream s = Minecraft.getMinecraft().getResourceManager().getResource(texture).getInputStream(); ByteArrayOutputStream bout = new ByteArrayOutputStream(); IOUtils.copy(s, bout); byte[] b = bout.toByteArray(); IntBuffer buf = ByteBuffer.wrap(b).asIntBuffer(); resizeCursor = new Cursor(32, 32, 15, 15, 1, buf, null); } catch(Exception e){ throw Throwables.propagate(e); }*/ resizeCursor = defaultCursor; } Had to comment out resize cursor, because it can't be loaded by throwing exception.
  19. That's better. But i have to ship cusor with mod... Wait, found something: http://freewindowsvistatutorials.com/whereAreCursorsStoredLocationOfMousePointersFolderInWindows7.php Now if i could get this folder on every os, and transform .cur into png to load...
  20. 2 Things: 1) This result isn't even on first page for me (google, what the heck?). 2) It's for swing. 100%. And minecraft is lwjgl. Also, i do know that i can ship my mod with cursor image, then load it to int buffer, then create new cursor from this image, and bind this cursor... But, i know that system has predefined cursor icons, so i would like to use those.
  21. Because there are multiple RenderGameOverlay sub events, and how event buses work. When you subscribe to RenderGameOverlay, you will recieve all events that are child classes of RenderGameOverlay. So you are rendering your text for each element of hud rendered.
  22. Hello everybody! This question is probably more LWJGL related, but i could not find already existing answer, so i will ask it here: How to change cursor icon, to one of ones predefined by system? In this case, i want to be able to change cursor icons to http://www.useragentman.com/blog/wp-content/uploads/2011/12/move_cursor.png[/img] or . Because i have gui elements that can be moved and resized, and i want to change cursor icon when user can move or resize element. Thanks for help! If you have any questions - just ask!
  23. Size of a character is 8. Now you need to figure out lines count. You may have to use same methods as vanilla does to determine amount of splits to string. Then you can calculate total height.
  24. It was already suggested by PR (by diesieben) more than half a year ago. Still open. Don't know why forge never merged it. https://github.com/MinecraftForge/MinecraftForge/pull/2012
×
×
  • Create New...

Important Information

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