Jump to content

Quizer9O8

Members
  • Posts

    27
  • Joined

  • Last visited

Everything posted by Quizer9O8

  1. Hello there, I want to apply an API from the mod TerraForged but I'm hitting several roadblocks. First of all the Readme.md provides a bit of code of API to work with. As far as I know this code: repositories { maven { url "https://io.terraforged.com/repository/maven/" } } dependencies { implementation fg.deobf("com.terraforged:TerraForged:1.15.2-0.1.0") } which is supposed to go into the build.gradle file of my mod as far as I know which works totally fine until I'm met with the following error: Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find com.terraforged:TerraForged:1.15.2-0.1.0. This is how I have my build.gradle file is set up: buildscript { repositories { maven { url "https://io.terraforged.com/repository/maven/" } } repositories { maven { url = 'https://files.minecraftforge.net/maven'} jcenter() mavenCentral() } dependencies { classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true } } plugins { id "com.wynprice.cursemaven" version "2.1.1" } apply plugin: 'net.minecraftforge.gradle' // Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. apply plugin: 'eclipse' apply plugin: 'maven-publish' version = '1.15.2-1.0.3-alpha-1' group = 'com.quizer9o8.strata' // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = 'strata' sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly. minecraft { // The mappings can be changed at any time, and must be in the following format. // snapshot_YYYYMMDD Snapshot are built nightly. // stable_# Stables are built at the discretion of the MCP team. // Use non-default mappings at your own risk. they may not always work. // Simply re-run your setup task after changing the mappings to update your workspace. mappings channel: 'snapshot', version: '20200521-1.15.1' // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Default run configurations. // These can be tweaked, removed, or duplicated as needed. runs { client { workingDirectory project.file('run') // Recommended logging data for a userdev environment property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' // Recommended logging level for the console property 'forge.logging.console.level', 'debug' mods { examplemod { source sourceSets.main } } } server { workingDirectory project.file('run') // Recommended logging data for a userdev environment property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' // Recommended logging level for the console property 'forge.logging.console.level', 'debug' mods { examplemod { source sourceSets.main } } } data { workingDirectory project.file('run') // Recommended logging data for a userdev environment property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' // Recommended logging level for the console property 'forge.logging.console.level', 'debug' args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/') mods { examplemod { source sourceSets.main } } } } } dependencies { // Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed // that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied. // The userdev artifact is a special name and will get all sorts of transformations applied to it. minecraft 'net.minecraftforge:forge:1.15.2-31.2.0' implementation fg.deobf("com.terraforged:TerraForged:1.15.2-0.1.0") // You may put jars on which you depend on in ./libs or you may define them like so.. // compile "some.group:artifact:version:classifier" // compile "some.group:artifact:version" // Real examples // compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env // compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env // The 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime. // provided 'com.mod-buildcraft:buildcraft:6.0.8:dev' // These dependencies get remapped to your current MCP mappings // deobf 'com.mod-buildcraft:buildcraft:6.0.8:dev' // For more info... // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html // http://www.gradle.org/docs/current/userguide/dependency_management.html } // Example for how to get properties into the manifest for reading by the runtime.. jar { manifest { attributes([ "Specification-Title": "examplemod", "Specification-Vendor": "examplemodsareus", "Specification-Version": "1", // We are version 1 of ourselves "Implementation-Title": project.name, "Implementation-Version": "${version}", "Implementation-Vendor" :"examplemodsareus", "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") ]) } } // Example configuration to allow publishing using the maven-publish task // This is the preferred method to reobfuscate your jar file jar.finalizedBy('reobfJar') // However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing //publish.dependsOn('reobfJar') publishing { publications { mavenJava(MavenPublication) { artifact jar } } repositories { maven { url "file:///${project.projectDir}/mcmodsrepo" } } } I don't know what causes this error, it might be that the dependency doesn't exist at all or I'm doing something wrong. Also I would like to know how to properly add API's from other mods in my mod as well. I have a hard time finding the information I'm looking for so I'm hoping If anyone can provide me with the right information I need to get on going.
  2. You might want to take a look at this too... https://bugs.mojang.com/browse/MC-74762 Many people have been experiencing this since 1.8.1 up till now and even in future versions if this issue doesn't get resolved.
  3. Steps to reproduce: 1. put render distance at 32 2. Create world with seed: 1745855786 3. go to the center of the world: 0 150 0 4. place a command block at the cords given at 3 5. insert this code and let it run in the command block for 30 minutes
  4. I've seen a couple of bug reports on this issue on the official Mojang Issue Tracker website https://bugs.mojang.com/browse/MC-98277 but this is something different. Most of the time, when I create a new world, the chunks within a certain radius that spawn around me are displaced. These chunks still belong to the biome where they were created (e.g, a chunk created that's part of a ocean that then appears in a desert will still have the characteristics of a ocean biome, like rain and sky color.) This happens without any changes to the world, no log output errors occur (and seems to intensify when Biomes O' Plenty is active), it just happens and I have no idea why this keeps happening. I wonder if there is a workaround for this issue since Mojang considers it resolved. See the attached pictures for examples of this bug.
  5. I keep having this crash whenever I use a mod. I did put everything in the splash screen config to false but it still doesn't work. Crash Log
  6. Like the title describes the issue, the Logger class, Java or ItelliJ refuses to accept .getlogger and marker: like a B!!! Is there something I'm doing wrong?http://imgur.com/a/BIFG2
  7. Ok and how...? I'm fairly new with the Metadata stuff so don't expect me understanding it straight away. Isn't there any tutorial or video to show me how to do it?
  8. Hello there, I'm planning to create a mod based off a suggestion on the Minecraft forums what's called 'Ores in EVERY kind of block'. http://www.minecraftforum.net/forums/minecraft-discussion/suggestions/88724-ores-in-every-kind-of-block-ores-as-metadata-now Is there a way to only display for example all the available ores (without the Stone/Netherrack texture) on every kind of block as metadata? I don't want to spend too much time on making all block textures with every ore available slapped on it if there's an easier way.
  9. Does anyone know what the impport keyboard command for IntelliJ is? With Eclipse it normally was Ctrl + O.
  10. I always get stuff like this happening to me all the time somehow. Error running Mineralz run client: Unable to open debugger port (127.0.0.1:57494): java.net.SocketException "socket closed" What does this mean and where do I have to look for it to solve this mess?
  11. Where can i do this? It's unkown terrain for me where we are going now.
  12. Ok i've changed my .json but the textures are still missing. Now what? ItemMineralzAmethyst { "parent": "item/generated", "textures": { "layer0": "mineralz:items/amethyst" } } Log [21:47:59] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. [21:47:59] [main/INFO] [FML/]: Forge Mod Loader version 12.17.0.1976 for Minecraft 1.9.4 loading [21:47:59] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_92, running on Windows 10:amd64:10.0, installed at C:\Program Files (x86)\Java\jre1.8.0_92 [21:47:59] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\Qlyo\Desktop\Mineralz\bin;C:\Users\Qlyo\.gradle\caches\minecraft\net\minecraftforge\forge\1.9.4-12.17.0.1976\snapshot\20160518\forgeSrc-1.9.4-12.17.0.1976.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.19\f7469a9307b962d1097e44713eb1baa087c06e43\realms-1.8.19.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.0.12_mojang\ba787e741efdc425fc5d2ea654b57c15fba27efa\fastutil-7.0.12_mojang.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.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\Qlyo\.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\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\Qlyo\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\Qlyo\.gradle\caches\minecraft\net\minecraftforge\forge\1.9.4-12.17.0.1976\start [21:47:59] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files (x86)\Java\jre1.8.0_92\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Program Files (x86)/Java/jre1.8.0_92/bin/server;C:/Program Files (x86)/Java/jre1.8.0_92/bin;C:/Program Files (x86)/Java/jre1.8.0_92/lib/amd64;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\AMD\ATI.ACE\Core-Static;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\WINDOWS\system32\config\systemprofile\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\WINDOWS\System32;;.;C:/Users/Qlyo/.gradle/caches/minecraft/net/minecraft/natives/1.9.4 [21:47:59] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [21:47:59] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin [21:47:59] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers [21:47:59] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin [21:47:59] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin [21:47:59] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin [21:47:59] [main/DEBUG] [FML/]: All fundamental core mods are successfully located [21:47:59] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\Qlyo\Desktop\Mineralz\run\. [21:47:59] [main/DEBUG] [FML/]: Discovering coremods [21:47:59] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [21:47:59] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [21:47:59] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [21:47:59] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [21:47:59] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [21:47:59] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [21:47:59] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [21:47:59] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [21:47:59] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [21:47:59] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers [21:47:59] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer [21:47:59] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer [21:47:59] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer [21:47:59] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer [21:47:59] [main/DEBUG] [FML/]: Injection complete [21:47:59] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} [21:47:59] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin [21:47:59] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [21:48:00] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\Qlyo\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20160518\srgs\srg-mcp.srg with 31803 records [21:48:02] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing [21:48:02] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully [21:48:02] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [21:48:02] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers [21:48:02] [main/DEBUG] [FML/]: Injection complete [21:48:02] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} [21:48:02] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin [21:48:02] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully [21:48:02] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [21:48:02] [main/DEBUG] [FML/]: Loaded 188 rules from AccessTransformer config file forge_at.cfg [21:48:02] [main/DEBUG] [FML/]: Validating minecraft [21:48:04] [main/DEBUG] [FML/]: Minecraft validated, launching... [21:48:04] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [21:48:04] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [21:48:04] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [21:48:04] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} [21:48:15] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot [21:48:15] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created [21:48:17] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0,002s [21:48:17] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:202]: ---- Minecraft Crash Report ---- // I feel sad now Time: 17-7-16 21:48 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.4 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_92, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 797630496 bytes (760 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.4.0 - Build 10.18.15.4278' Renderer: 'Intel(R) HD Graphics 5500' [21:48:18] [Client thread/INFO] [FML/]: MinecraftForge v12.17.0.1976 Initialized [21:48:18] [Client thread/INFO] [FML/]: Replaced 232 ore recipes [21:48:19] [Client thread/DEBUG] [FML/]: File C:\Users\Qlyo\Desktop\Mineralz\run\config\injectedDependencies.json not found. No dependencies injected [21:48:19] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] [21:48:19] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes [21:48:19] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Qlyo\Desktop\Mineralz\bin, examining for mod candidates [21:48:19] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.gradle\caches\minecraft\net\minecraftforge\forge\1.9.4-12.17.0.1976\snapshot\20160518\forgeSrc-1.9.4-12.17.0.1976.jar, examining for mod candidates [21:48:19] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.19\f7469a9307b962d1097e44713eb1baa087c06e43\realms-1.8.19.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.0.12_mojang\ba787e741efdc425fc5d2ea654b57c15fba27efa\fastutil-7.0.12_mojang.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar [21:48:19] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar [21:48:19] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [21:48:19] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates [21:48:19] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates [21:48:19] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Qlyo\.gradle\caches\minecraft\net\minecraftforge\forge\1.9.4-12.17.0.1976\start, examining for mod candidates [21:48:19] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully [21:48:19] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer [21:48:19] [Client thread/INFO] [FML/]: Searching C:\Users\Qlyo\Desktop\Mineralz\run\mods for mods [21:48:19] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods [21:48:19] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package assets [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/lang [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/models [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/models/block [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/models/item [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/textures [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/textures/blocks [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/textures/gui [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/textures/items [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package com [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package com/quizer9o8 [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package com/quizer9o8/mineralz [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package com/quizer9o8/mineralz/init [21:48:19] [Client thread/TRACE] [FML/]: Recursing into package com/quizer9o8/mineralz/items [21:48:20] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.quizer9o8.mineralz.Mineralz) - loading [21:48:20] [Client thread/TRACE] [mineralz/]: Parsed dependency info : [] [] [] [21:48:20] [Client thread/TRACE] [FML/]: Recursing into package com/quizer9o8/mineralz/proxy [21:48:20] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.9.4-12.17.0.1976.jar for potential mods [21:48:20] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.9.4-12.17.0.1976.jar appears to be missing an mcmod.info file [21:48:23] [Client thread/DEBUG] [FML/]: Examining file jsr305-3.0.1.jar for potential mods [21:48:23] [Client thread/DEBUG] [FML/]: The mod container jsr305-3.0.1.jar appears to be missing an mcmod.info file [21:48:23] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods [21:48:23] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file [21:48:23] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods [21:48:23] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file [21:48:23] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods [21:48:23] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file [21:48:23] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods [21:48:23] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file [21:48:23] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods [21:48:23] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start [21:48:23] [Client thread/TRACE] [FML/]: Recursing into package net [21:48:23] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge [21:48:23] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle [21:48:23] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle/tweakers [21:48:23] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load [21:48:23] [Client thread/TRACE] [FML/]: Received a system property request '' [21:48:23] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods [21:48:23] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods [21:48:23] [Client thread/DEBUG] [mineralz/]: Enabling mod mineralz [21:48:23] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied [21:48:23] [Client thread/TRACE] [FML/]: All mod requirements are satisfied [21:48:23] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list [21:48:23] [Client thread/TRACE] [FML/]: Mod sorting completed successfully [21:48:23] [Client thread/DEBUG] [FML/]: Mod sorting data [21:48:23] [Client thread/DEBUG] [FML/]: mineralz(Mineralz:1.0.0): bin () [21:48:23] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp [21:48:23] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp [21:48:23] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0,011s [21:48:23] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML [21:48:23] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists [21:48:23] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection [21:48:23] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99) [21:48:23] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, mineralz] at CLIENT [21:48:23] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, mineralz] at SERVER [21:48:25] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML [21:48:25] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 1,845s [21:48:25] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge [21:48:25] [Client thread/DEBUG] [Forge/Forge]: Preloading CrashReport Classes [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$10 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$11 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$12 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$13 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$14 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$5 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$6 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$7 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$8 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$9 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderGlobal$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureAtlasSprite$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureManager$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$5 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$6 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$7 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$5 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/EntityTracker$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/player/InventoryPlayer$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/nbt/NBTTagCompound$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/nbt/NBTTagCompound$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/network/NetHandlerPlayServer$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/network/NetworkSystem$6 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/MinecraftServer$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/MinecraftServer$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/dedicated/DedicatedServer$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/dedicated/DedicatedServer$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/integrated/IntegratedServer$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/integrated/IntegratedServer$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/CommandBlockBaseLogic$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/CommandBlockBaseLogic$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/chunk/Chunk$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$2 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$3 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$4 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$5 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$6 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$7 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$8 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$9 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/client/SplashProgress$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/FMLCommonHandler$1 [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/ICrashCallable [21:48:25] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/Loader$3 [21:48:25] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed [21:48:25] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection [21:48:25] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (12.17.0.1976) [21:48:25] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge [21:48:25] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0,287s [21:48:25] [Client thread/TRACE] [mineralz/mineralz]: Sending event FMLConstructionEvent to mod mineralz [21:48:25] [Client thread/TRACE] [FML/mineralz]: Mod mineralz is using network checker : Accepting version 1.0.0 [21:48:25] [Client thread/TRACE] [FML/mineralz]: Testing mod mineralz to verify it accepts its own version in a remote connection [21:48:25] [Client thread/TRACE] [FML/mineralz]: The mod mineralz accepts its own version (1.0.0) [21:48:25] [Client thread/DEBUG] [FML/mineralz]: Attempting to inject @SidedProxy classes into mineralz [21:48:25] [Client thread/TRACE] [mineralz/mineralz]: Sent event FMLConstructionEvent to mod mineralz [21:48:25] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Mineralz took 0,044s [21:48:25] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 2,187s [21:48:25] [Client thread/DEBUG] [FML/]: Mod signature data [21:48:25] [Client thread/DEBUG] [FML/]: Valid Signatures: [21:48:25] [Client thread/DEBUG] [FML/]: Missing Signatures: [21:48:25] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.19) minecraft.jar [21:48:25] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.9.4-12.17.0.1976.jar [21:48:25] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 12.17.0.1976) forgeSrc-1.9.4-12.17.0.1976.jar [21:48:25] [Client thread/DEBUG] [FML/]: mineralz (Mineralz 1.0.0) bin [21:48:25] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,013s [21:48:25] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,022s [21:48:25] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,017s [21:48:25] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Mineralz took 0,004s [21:48:25] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0,067s [21:48:25] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0,068s [21:48:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0,124s [21:48:25] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one [21:48:25] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one [21:48:25] [Client thread/DEBUG] [Mineralz/]: Mod Mineralz is missing a pack.mcmeta file, substituting a dummy one [21:48:25] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations [21:48:25] [Client thread/INFO] [FML/]: Found 418 ObjectHolder annotations [21:48:25] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations [21:48:25] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations [21:48:25] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp [21:48:25] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp [21:48:25] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0,002s [21:48:25] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML [21:48:25] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML [21:48:25] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0,001s [21:48:25] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge [21:48:26] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 [21:48:26] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge [21:48:26] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0,179s [21:48:26] [Client thread/TRACE] [mineralz/mineralz]: Sending event FMLPreInitializationEvent to mod mineralz [21:48:26] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.Mineralz:preInit:26]: Pre Init [21:48:26] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [21:48:26] [Client thread/TRACE] [mineralz/mineralz]: Sent event FMLPreInitializationEvent to mod mineralz [21:48:26] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Mineralz took 0,028s [21:48:26] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0,210s [21:48:26] [Client thread/INFO] [FML/]: Applying holder lookups [21:48:26] [Client thread/INFO] [FML/]: Holder lookups applied [21:48:26] [Client thread/INFO] [FML/]: Injecting itemstacks [21:48:26] [Client thread/INFO] [FML/]: Itemstack injection complete [21:48:26] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0,000s [21:48:26] [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.1.2014", "1.10.2-recommended": "12.18.1.2011", "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.1990", "1.9.4-recommended": "12.17.0.1976", "latest": "12.18.1.2014", "latest-1.7.10": "10.13.2.1343", "recommended": "12.18.1.2011" } } [21:48:26] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: UP_TO_DATE Target: null [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 5,095s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,011s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,005s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0,015s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0,019s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0,004s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0,014s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - B3DLoader took 0,000s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - OBJLoader took 0,000s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0,000s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0,000s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0,000s [21:48:31] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0,000s [21:48:38] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 5,900s [21:48:41] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzBronzeIngot#inventory', trying to load the variant from the blockstate json [21:48:41] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzCopperIngot#inventory', trying to load the variant from the blockstate json [21:48:41] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzOnyx#inventory', trying to load the variant from the blockstate json [21:48:41] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzPlatinumIngot#inventory', trying to load the variant from the blockstate json [21:48:41] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzPlatinumNugget#inventory', trying to load the variant from the blockstate json [21:48:41] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzRuby#inventory', trying to load the variant from the blockstate json [21:48:41] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzSapphire#inventory', trying to load the variant from the blockstate json [21:48:41] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzSilverIngot#inventory', trying to load the variant from the blockstate json [21:48:41] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzTinIngot#inventory', trying to load the variant from the blockstate json [21:48:41] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 3,327s [21:48:41] [Client thread/INFO] [FML/]: Max texture size: 16384 [21:48:41] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,003s [21:48:41] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,009s [21:48:41] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload - missingno took 0,001s [21:48:44] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 2,642s [21:48:44] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzSilverIngot#inventory for item "mineralz:ItemMineralzSilverIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemMineralzSilverIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: mineralz:models/item/ItemMineralzSilverIngot.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [21:48:44] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzSilverIngot#inventory for item "mineralz:ItemMineralzSilverIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemMineralzSilverIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [21:48:44] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzSapphire#inventory for item "mineralz:ItemMineralzSapphire", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemMineralzSapphire with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: mineralz:models/item/ItemMineralzSapphire.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [21:48:44] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzSapphire#inventory for item "mineralz:ItemMineralzSapphire", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemMineralzSapphire#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [21:48:44] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzCopperIngot#inventory for item "mineralz:ItemMineralzCopperIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemMineralzCopperIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: mineralz:models/item/ItemMineralzCopperIngot.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [21:48:44] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzCopperIngot#inventory for item "mineralz:ItemMineralzCopperIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemMineralzCopperIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [21:48:44] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzTinIngot#inventory for item "mineralz:ItemMineralzTinIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemMineralzTinIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: mineralz:models/item/ItemMineralzTinIngot.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [21:48:44] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzTinIngot#inventory for item "mineralz:ItemMineralzTinIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemMineralzTinIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [21:48:44] [Client thread/ERROR] [FML/]: Suppressed additional 4 model loading errors for domain mineralz [21:48:44] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 12,648s [21:48:44] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 12,962s [21:48:45] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0,009s [21:48:45] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 1,141s [21:48:45] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0,000s [21:48:45] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0,000s [21:48:45] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0,000s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0,409s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 14,530s [21:48:46] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp [21:48:46] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0,001s [21:48:46] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML [21:48:46] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0,001s [21:48:46] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge [21:48:46] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0,001s [21:48:46] [Client thread/TRACE] [mineralz/mineralz]: Sending event FMLInitializationEvent to mod mineralz [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.Mineralz:init:35]: Init [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemMineralzAmethyst [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemMineralzBronzeIngot [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemMineralzCopperIngot [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemMineralzOnyx [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemMineralzPlatinumIngot [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemMineralzPlatinumNugget [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemMineralzRuby [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemMineralzSapphire [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemMineralzSilverIngot [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemMineralzTinIngot [21:48:46] [Client thread/TRACE] [mineralz/mineralz]: Sent event FMLInitializationEvent to mod mineralz [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Mineralz took 0,006s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0,008s [21:48:46] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp [21:48:46] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp [21:48:46] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0,007s [21:48:46] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML [21:48:46] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML [21:48:46] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0,000s [21:48:46] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge [21:48:46] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge [21:48:46] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0,001s [21:48:46] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mineralz [21:48:46] [Client thread/TRACE] [mineralz/mineralz]: Sending event IMCEvent to mod mineralz [21:48:46] [Client thread/TRACE] [mineralz/mineralz]: Sent event IMCEvent to mod mineralz [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Mineralz took 0,000s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0,009s [21:48:46] [Client thread/INFO] [FML/]: Injecting itemstacks [21:48:46] [Client thread/INFO] [FML/]: Itemstack injection complete [21:48:46] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp [21:48:46] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0,001s [21:48:46] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML [21:48:46] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0,001s [21:48:46] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge [21:48:46] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0,023s [21:48:46] [Client thread/TRACE] [mineralz/mineralz]: Sending event FMLPostInitializationEvent to mod mineralz [21:48:46] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.Mineralz:postInit:42]: Post Init [21:48:46] [Client thread/TRACE] [mineralz/mineralz]: Sent event FMLPostInitializationEvent to mod mineralz [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Mineralz took 0,001s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0,025s [21:48:46] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp [21:48:46] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0,000s [21:48:46] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML [21:48:46] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0,001s [21:48:46] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge [21:48:46] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking: [21:48:46] [Client thread/DEBUG] [FML/Forge]: 16: RecipeEntry("Before", UNKNOWN, ) [21:48:46] [Client thread/DEBUG] [FML/Forge]: 15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped [21:48:46] [Client thread/DEBUG] [FML/Forge]: 13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped [21:48:46] [Client thread/DEBUG] [FML/Forge]: 12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped [21:48:46] [Client thread/DEBUG] [FML/Forge]: 11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless [21:48:46] [Client thread/DEBUG] [FML/Forge]: 1: RecipeEntry("After", UNKNOWN, ) [21:48:46] [Client thread/DEBUG] [FML/Forge]: Sorting recipes [21:48:46] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0,041s [21:48:46] [Client thread/TRACE] [mineralz/mineralz]: Sending event FMLLoadCompleteEvent to mod mineralz [21:48:46] [Client thread/TRACE] [mineralz/mineralz]: Sent event FMLLoadCompleteEvent to mod mineralz [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Mineralz took 0,000s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0,043s [21:48:46] [Client thread/DEBUG] [FML/]: Freezing block and item id maps [21:48:46] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,000s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,046s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,031s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Mineralz took 0,003s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0,000s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0,007s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0,000s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0,003s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0,014s [21:48:46] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0,024s [21:48:55] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3,634s [21:48:57] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzBronzeIngot#inventory', trying to load the variant from the blockstate json [21:48:57] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzCopperIngot#inventory', trying to load the variant from the blockstate json [21:48:57] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzOnyx#inventory', trying to load the variant from the blockstate json [21:48:57] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzPlatinumIngot#inventory', trying to load the variant from the blockstate json [21:48:57] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzPlatinumNugget#inventory', trying to load the variant from the blockstate json [21:48:57] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzRuby#inventory', trying to load the variant from the blockstate json [21:48:57] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzSapphire#inventory', trying to load the variant from the blockstate json [21:48:57] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzSilverIngot#inventory', trying to load the variant from the blockstate json [21:48:57] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemMineralzTinIngot#inventory', trying to load the variant from the blockstate json [21:48:57] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 1,774s [21:48:57] [Client thread/INFO] [FML/]: Max texture size: 16384 [21:48:57] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,086s [21:48:57] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,032s [21:48:57] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,036s [21:48:57] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload took 0,369s [21:48:58] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 0,827s [21:48:58] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzSilverIngot#inventory for item "mineralz:ItemMineralzSilverIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemMineralzSilverIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: mineralz:models/item/ItemMineralzSilverIngot.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [21:48:58] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzSilverIngot#inventory for item "mineralz:ItemMineralzSilverIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemMineralzSilverIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [21:48:58] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzSapphire#inventory for item "mineralz:ItemMineralzSapphire", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemMineralzSapphire with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: mineralz:models/item/ItemMineralzSapphire.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [21:48:58] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzSapphire#inventory for item "mineralz:ItemMineralzSapphire", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemMineralzSapphire#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [21:48:58] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzCopperIngot#inventory for item "mineralz:ItemMineralzCopperIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemMineralzCopperIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: mineralz:models/item/ItemMineralzCopperIngot.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [21:48:58] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzCopperIngot#inventory for item "mineralz:ItemMineralzCopperIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemMineralzCopperIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [21:48:58] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzTinIngot#inventory for item "mineralz:ItemMineralzTinIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemMineralzTinIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: mineralz:models/item/ItemMineralzTinIngot.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:311) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [21:48:58] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemMineralzTinIngot#inventory for item "mineralz:ItemMineralzTinIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemMineralzTinIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [21:48:58] [Client thread/ERROR] [FML/]: Suppressed additional 4 model loading errors for domain mineralz [21:48:58] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 12,412s [21:48:58] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 12,413s [21:48:58] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 12,493s [21:48:58] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one [21:48:58] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one [21:48:58] [Client thread/DEBUG] [Mineralz/]: Mod Mineralz is missing a pack.mcmeta file, substituting a dummy one [21:48:58] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 39,768s [21:49:02] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp [21:49:02] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp [21:49:02] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0,001s [21:49:02] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML [21:49:02] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML [21:49:02] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0,000s [21:49:02] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge [21:49:02] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge [21:49:02] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0,000s [21:49:02] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLServerAboutToStartEvent to mod mineralz [21:49:02] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLServerAboutToStartEvent to mod mineralz [21:49:02] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Mineralz took 0,000s [21:49:02] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0,002s [21:49:03] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance [21:49:03] [server thread/INFO] [FML/]: Found a missing id from the world mineralz:ItemMineralzSilverInto [21:49:03] [server thread/DEBUG] [FML/]: There are 1 mappings missing - attempting a mod remap [21:49:03] [server thread/TRACE] [mcp/mcp]: Sending event FMLMissingMappingsEvent to mod mcp [21:49:03] [server thread/TRACE] [mcp/mcp]: Sent event FMLMissingMappingsEvent to mod mcp [21:49:03] [server thread/DEBUG] [FML/]: Bar Step: MissingMappings - Minecraft Coder Pack took 0,001s [21:49:03] [server thread/TRACE] [FML/FML]: Sending event FMLMissingMappingsEvent to mod FML [21:49:03] [server thread/TRACE] [FML/FML]: Sent event FMLMissingMappingsEvent to mod FML [21:49:03] [server thread/DEBUG] [FML/]: Bar Step: MissingMappings - Forge Mod Loader took 0,000s [21:49:03] [server thread/TRACE] [Forge/Forge]: Sending event FMLMissingMappingsEvent to mod Forge [21:49:03] [server thread/TRACE] [Forge/Forge]: Sent event FMLMissingMappingsEvent to mod Forge [21:49:03] [server thread/DEBUG] [FML/]: Bar Step: MissingMappings - Minecraft Forge took 0,000s [21:49:03] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLMissingMappingsEvent to mod mineralz [21:49:03] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLMissingMappingsEvent to mod mineralz [21:49:03] [server thread/DEBUG] [FML/]: Bar Step: MissingMappings - Mineralz took 0,000s [21:49:03] [server thread/DEBUG] [FML/]: Bar Finished: MissingMappings took 0,001s [21:49:03] [server thread/ERROR] [FML/]: There are unidentified mappings in this world - we are going to attempt to process anyway [21:49:03] [server thread/ERROR] [FML/]: Unidentified item: mineralz:ItemMineralzSilverInto, id 4104 [21:49:06] [server thread/INFO] [FML/]: World backup created at C:\Users\Qlyo\Desktop\Mineralz\run\saves\Modded World-20160717-214906.zip. [21:49:06] [server thread/WARN] [FML/]: This world contains block and item mappings that may cause world breakage [21:49:06] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp [21:49:06] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp [21:49:06] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,002s [21:49:06] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML [21:49:06] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML [21:49:06] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s [21:49:06] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge [21:49:06] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge [21:49:06] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,037s [21:49:06] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLModIdMappingEvent to mod mineralz [21:49:06] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLModIdMappingEvent to mod mineralz [21:49:06] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Mineralz took 0,005s [21:49:06] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,044s [21:49:06] [server thread/INFO] [FML/]: Applying holder lookups [21:49:06] [server thread/INFO] [FML/]: Holder lookups applied [21:49:06] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world [21:49:06] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava [21:49:06] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water [21:49:06] [server thread/INFO] [FML/]: Loading dimension 0 (Modded World) (net.minecraft.server.integrated.IntegratedServer@661f1c21) [21:49:07] [server thread/INFO] [FML/]: Loading dimension 1 (Modded World) (net.minecraft.server.integrated.IntegratedServer@661f1c21) [21:49:07] [server thread/INFO] [FML/]: Loading dimension -1 (Modded World) (net.minecraft.server.integrated.IntegratedServer@661f1c21) [21:49:09] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp [21:49:09] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp [21:49:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0,000s [21:49:09] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML [21:49:09] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML [21:49:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0,000s [21:49:09] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge [21:49:09] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge [21:49:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0,003s [21:49:09] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLServerStartingEvent to mod mineralz [21:49:09] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLServerStartingEvent to mod mineralz [21:49:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Mineralz took 0,000s [21:49:09] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0,004s [21:49:09] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp [21:49:09] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp [21:49:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0,000s [21:49:09] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML [21:49:09] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML [21:49:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0,000s [21:49:09] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge [21:49:09] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge [21:49:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0,000s [21:49:09] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLServerStartedEvent to mod mineralz [21:49:09] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLServerStartedEvent to mod mineralz [21:49:09] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Mineralz took 0,000s [21:49:09] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0,001s [21:49:11] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: Next: HELLO [21:49:11] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: Next: HELLO [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0 [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO [21:49:11] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2 [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0 [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO [21:49:11] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2 [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: Next: HELLO [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERDATA [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO [21:49:11] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : FML@8.0.99.99,mineralz@1.0.0,Forge@12.17.0.1976,mcp@9.19 [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: Next: WAITINGCACK [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: Next: PENDINGCOMPLETE [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: Next: COMPLETE [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: Next: COMPLETE [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: Next: DONE [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE [21:49:11] [Netty Local Client IO #0/DEBUG] [FML/]: Next: DONE [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE [21:49:11] [Netty Server IO #1/DEBUG] [FML/]: Next: DONE [21:49:11] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established [21:49:11] [server thread/INFO] [FML/]: [server thread] Server side modded connection established [21:49:11] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0 [21:49:12] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Modded World [21:49:33] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Modded World [21:49:34] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp [21:49:34] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp [21:49:34] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Coder Pack took 0,000s [21:49:34] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML [21:49:34] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML [21:49:34] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Forge Mod Loader took 0,000s [21:49:34] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge [21:49:34] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge [21:49:34] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Forge took 0,000s [21:49:34] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLServerStoppingEvent to mod mineralz [21:49:34] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLServerStoppingEvent to mod mineralz [21:49:34] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Mineralz took 0,000s [21:49:34] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopping took 0,001s [21:49:34] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Modded World [21:49:34] [server thread/INFO] [FML/]: Unloading dimension 0 [21:49:34] [server thread/INFO] [FML/]: Unloading dimension -1 [21:49:34] [server thread/INFO] [FML/]: Unloading dimension 1 [21:49:34] [server thread/DEBUG] [FML/]: Reverting to frozen data state. [21:49:34] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp [21:49:34] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp [21:49:34] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,000s [21:49:34] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML [21:49:34] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML [21:49:34] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s [21:49:34] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge [21:49:35] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge [21:49:35] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,555s [21:49:35] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLModIdMappingEvent to mod mineralz [21:49:35] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLModIdMappingEvent to mod mineralz [21:49:35] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Mineralz took 0,000s [21:49:35] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,556s [21:49:35] [server thread/INFO] [FML/]: Applying holder lookups [21:49:35] [server thread/INFO] [FML/]: Holder lookups applied [21:49:35] [server thread/DEBUG] [FML/]: Frozen state restored. [21:49:35] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp [21:49:35] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp [21:49:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Coder Pack took 0,000s [21:49:35] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML [21:49:35] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML [21:49:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Forge Mod Loader took 0,000s [21:49:35] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge [21:49:35] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge [21:49:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Forge took 0,000s [21:49:35] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLServerStoppedEvent to mod mineralz [21:49:35] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLServerStoppedEvent to mod mineralz [21:49:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Mineralz took 0,000s [21:49:35] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopped took 0,001s
  13. The .json's that I've created for my mod arent working wich causes the textures i've made to be not there. This is one of the .json's i made. .json { "parent": "builtin/generated", "textures": { "layer0": "mineralz:items/amethyst.png" }, "display": { "thirdperson": { "rotation": [-90, 0, 0], "translation": [0, ,1 -3], "scale": [0.55, 0.55, 0.55] }, "firstperson": { "rotation": [0, -135, 25), "translation": [0, 4, 2], "scale": [1.7, 1.7, 1.7] } } } Log [23:16:24] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. [23:16:24] [main/INFO] [FML/]: Forge Mod Loader version 12.17.0.1976 for Minecraft 1.9.4 loading [23:16:24] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_92, running on Windows 10:amd64:10.0, installed at C:\Program Files (x86)\Java\jre1.8.0_92 [23:16:24] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\Qlyo\Desktop\Mineralz\bin;C:\Users\Qlyo\.gradle\caches\minecraft\net\minecraftforge\forge\1.9.4-12.17.0.1976\snapshot\20160518\forgeSrc-1.9.4-12.17.0.1976.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.19\f7469a9307b962d1097e44713eb1baa087c06e43\realms-1.8.19.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.0.12_mojang\ba787e741efdc425fc5d2ea654b57c15fba27efa\fastutil-7.0.12_mojang.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\Qlyo\.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\Qlyo\.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\Qlyo\.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\Qlyo\.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\Qlyo\.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\Qlyo\.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\Qlyo\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\Qlyo\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\Qlyo\.gradle\caches\minecraft\net\minecraftforge\forge\1.9.4-12.17.0.1976\start [23:16:24] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files (x86)\Java\jre1.8.0_92\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Program Files (x86)/Java/jre1.8.0_92/bin/server;C:/Program Files (x86)/Java/jre1.8.0_92/bin;C:/Program Files (x86)/Java/jre1.8.0_92/lib/amd64;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\AMD\ATI.ACE\Core-Static;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\WINDOWS\system32\config\systemprofile\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\WINDOWS\System32;;.;C:/Users/Qlyo/.gradle/caches/minecraft/net/minecraft/natives/1.9.4 [23:16:24] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [23:16:24] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin [23:16:24] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers [23:16:24] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin [23:16:24] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin [23:16:24] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin [23:16:24] [main/DEBUG] [FML/]: All fundamental core mods are successfully located [23:16:24] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\Qlyo\Desktop\Mineralz\run\. [23:16:24] [main/DEBUG] [FML/]: Discovering coremods [23:16:24] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [23:16:24] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [23:16:24] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [23:16:24] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [23:16:24] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [23:16:24] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [23:16:24] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [23:16:24] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [23:16:24] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [23:16:24] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers [23:16:24] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer [23:16:24] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer [23:16:24] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer [23:16:24] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer [23:16:24] [main/DEBUG] [FML/]: Injection complete [23:16:24] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} [23:16:24] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin [23:16:24] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [23:16:24] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\Qlyo\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20160518\srgs\srg-mcp.srg with 31803 records [23:16:26] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing [23:16:26] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully [23:16:26] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [23:16:26] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers [23:16:26] [main/DEBUG] [FML/]: Injection complete [23:16:26] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} [23:16:26] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin [23:16:26] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully [23:16:26] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [23:16:26] [main/DEBUG] [FML/]: Loaded 188 rules from AccessTransformer config file forge_at.cfg [23:16:26] [main/DEBUG] [FML/]: Validating minecraft [23:16:27] [main/DEBUG] [FML/]: Minecraft validated, launching... [23:16:27] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [23:16:27] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [23:16:27] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [23:16:27] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main} [23:16:33] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot [23:16:33] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created [23:16:34] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0,002s [23:16:34] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:202]: ---- Minecraft Crash Report ---- // Oh - I know what I did wrong! Time: 15-7-16 23:16 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.4 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_92, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 797587632 bytes (760 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.4.0 - Build 10.18.15.4278' Renderer: 'Intel(R) HD Graphics 5500' [23:16:35] [Client thread/INFO] [FML/]: MinecraftForge v12.17.0.1976 Initialized [23:16:35] [Client thread/INFO] [FML/]: Replaced 232 ore recipes [23:16:35] [Client thread/DEBUG] [FML/]: File C:\Users\Qlyo\Desktop\Mineralz\run\config\injectedDependencies.json not found. No dependencies injected [23:16:35] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer] [23:16:35] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes [23:16:35] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Qlyo\Desktop\Mineralz\bin, examining for mod candidates [23:16:35] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.gradle\caches\minecraft\net\minecraftforge\forge\1.9.4-12.17.0.1976\snapshot\20160518\forgeSrc-1.9.4-12.17.0.1976.jar, examining for mod candidates [23:16:35] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\netty\1.6\4b75825a06139752bd800d9e29c5fd55b8b1b1e4\netty-1.6.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.22\afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2\authlib-1.5.22.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.8.19\f7469a9307b962d1097e44713eb1baa087c06e43\realms-1.8.19.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.0.12_mojang\ba787e741efdc425fc5d2ea654b57c15fba27efa\fastutil-7.0.12_mojang.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar [23:16:35] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar [23:16:35] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\Qlyo\.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 [23:16:35] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates [23:16:35] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\Qlyo\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates [23:16:35] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\Qlyo\.gradle\caches\minecraft\net\minecraftforge\forge\1.9.4-12.17.0.1976\start, examining for mod candidates [23:16:35] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully [23:16:35] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer [23:16:35] [Client thread/INFO] [FML/]: Searching C:\Users\Qlyo\Desktop\Mineralz\run\mods for mods [23:16:35] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods [23:16:35] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package assets [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/lang [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/models [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/models/block [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/models/item [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/textures [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/textures/blocks [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/textures/gui [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package assets/mineralz/textures/items [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package com [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package com/quizer9o8 [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package com/quizer9o8/mineralz [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package com/quizer9o8/mineralz/init [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package com/quizer9o8/mineralz/items [23:16:35] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.quizer9o8.mineralz.Mineralz) - loading [23:16:35] [Client thread/TRACE] [mineralz/]: Parsed dependency info : [] [] [] [23:16:35] [Client thread/TRACE] [FML/]: Recursing into package com/quizer9o8/mineralz/proxy [23:16:35] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.9.4-12.17.0.1976.jar for potential mods [23:16:35] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.9.4-12.17.0.1976.jar appears to be missing an mcmod.info file [23:16:37] [Client thread/DEBUG] [FML/]: Examining file jsr305-3.0.1.jar for potential mods [23:16:37] [Client thread/DEBUG] [FML/]: The mod container jsr305-3.0.1.jar appears to be missing an mcmod.info file [23:16:37] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods [23:16:37] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file [23:16:37] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods [23:16:37] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file [23:16:37] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods [23:16:37] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file [23:16:37] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods [23:16:37] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file [23:16:37] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods [23:16:37] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start [23:16:37] [Client thread/TRACE] [FML/]: Recursing into package net [23:16:37] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge [23:16:37] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle [23:16:37] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle/tweakers [23:16:37] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load [23:16:37] [Client thread/TRACE] [FML/]: Received a system property request '' [23:16:37] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods [23:16:37] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods [23:16:37] [Client thread/DEBUG] [mineralz/]: Enabling mod mineralz [23:16:37] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied [23:16:37] [Client thread/TRACE] [FML/]: All mod requirements are satisfied [23:16:37] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list [23:16:37] [Client thread/TRACE] [FML/]: Mod sorting completed successfully [23:16:37] [Client thread/DEBUG] [FML/]: Mod sorting data [23:16:37] [Client thread/DEBUG] [FML/]: mineralz(Mineralz:1.0.0): bin () [23:16:37] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp [23:16:37] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp [23:16:37] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0,004s [23:16:37] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML [23:16:37] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists [23:16:37] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection [23:16:37] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99) [23:16:37] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, mineralz] at CLIENT [23:16:37] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, mineralz] at SERVER [23:16:37] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML [23:16:37] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0,685s [23:16:37] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge [23:16:37] [Client thread/DEBUG] [Forge/Forge]: Preloading CrashReport Classes [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$10 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$11 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$12 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$13 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$14 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$3 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$4 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$5 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$6 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$7 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$8 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$9 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$1 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$2 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$3 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$4 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$1 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$2 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$3 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$4 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$2 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$3 [23:16:37] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$4 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderGlobal$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$4 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureAtlasSprite$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureManager$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$4 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$5 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$6 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$7 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$4 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$5 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$4 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/EntityTracker$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/player/InventoryPlayer$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/nbt/NBTTagCompound$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/nbt/NBTTagCompound$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/network/NetHandlerPlayServer$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/network/NetworkSystem$6 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/MinecraftServer$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/MinecraftServer$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/dedicated/DedicatedServer$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/dedicated/DedicatedServer$4 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/integrated/IntegratedServer$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/integrated/IntegratedServer$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/CommandBlockBaseLogic$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/CommandBlockBaseLogic$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$4 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/chunk/Chunk$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$2 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$3 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$4 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$5 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$6 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$7 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$8 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$9 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/client/SplashProgress$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/FMLCommonHandler$1 [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/ICrashCallable [23:16:38] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/Loader$3 [23:16:38] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed [23:16:38] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection [23:16:38] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (12.17.0.1976) [23:16:38] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0,259s [23:16:38] [Client thread/TRACE] [mineralz/mineralz]: Sending event FMLConstructionEvent to mod mineralz [23:16:38] [Client thread/TRACE] [FML/mineralz]: Mod mineralz is using network checker : Accepting version 1.0.0 [23:16:38] [Client thread/TRACE] [FML/mineralz]: Testing mod mineralz to verify it accepts its own version in a remote connection [23:16:38] [Client thread/TRACE] [FML/mineralz]: The mod mineralz accepts its own version (1.0.0) [23:16:38] [Client thread/DEBUG] [FML/mineralz]: Attempting to inject @SidedProxy classes into mineralz [23:16:38] [Client thread/TRACE] [mineralz/mineralz]: Sent event FMLConstructionEvent to mod mineralz [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Mineralz took 0,035s [23:16:38] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0,984s [23:16:38] [Client thread/DEBUG] [FML/]: Mod signature data [23:16:38] [Client thread/DEBUG] [FML/]: Valid Signatures: [23:16:38] [Client thread/DEBUG] [FML/]: Missing Signatures: [23:16:38] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.19) minecraft.jar [23:16:38] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.9.4-12.17.0.1976.jar [23:16:38] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 12.17.0.1976) forgeSrc-1.9.4-12.17.0.1976.jar [23:16:38] [Client thread/DEBUG] [FML/]: mineralz (Mineralz 1.0.0) bin [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,015s [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,017s [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,019s [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Mineralz took 0,009s [23:16:38] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0,056s [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0,057s [23:16:38] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0,117s [23:16:38] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one [23:16:38] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one [23:16:38] [Client thread/DEBUG] [Mineralz/]: Mod Mineralz is missing a pack.mcmeta file, substituting a dummy one [23:16:38] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations [23:16:38] [Client thread/INFO] [FML/]: Found 418 ObjectHolder annotations [23:16:38] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations [23:16:38] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations [23:16:38] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp [23:16:38] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0,001s [23:16:38] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML [23:16:38] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0,001s [23:16:38] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge [23:16:38] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0 [23:16:38] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0,135s [23:16:38] [Client thread/TRACE] [mineralz/mineralz]: Sending event FMLPreInitializationEvent to mod mineralz [23:16:38] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.Mineralz:preInit:26]: Pre Init [23:16:38] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [23:16:38] [Client thread/TRACE] [mineralz/mineralz]: Sent event FMLPreInitializationEvent to mod mineralz [23:16:38] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Mineralz took 0,030s [23:16:38] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0,167s [23:16:38] [Client thread/INFO] [FML/]: Applying holder lookups [23:16:38] [Client thread/INFO] [FML/]: Holder lookups applied [23:16:38] [Client thread/INFO] [FML/]: Injecting itemstacks [23:16:38] [Client thread/INFO] [FML/]: Itemstack injection complete [23:16:38] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0,000s [23:16:39] [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.1.2014", "1.10.2-recommended": "12.18.1.2011", "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.1990", "1.9.4-recommended": "12.17.0.1976", "latest": "12.18.1.2014", "latest-1.7.10": "10.13.2.1343", "recommended": "12.18.1.2011" } } [23:16:39] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: UP_TO_DATE Target: null [23:16:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 3,808s [23:16:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,006s [23:16:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0,004s [23:16:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0,011s [23:16:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0,013s [23:16:42] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0,003s [23:16:42] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0,012s [23:16:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - B3DLoader took 0,000s [23:16:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - OBJLoader took 0,000s [23:16:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0,000s [23:16:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0,000s [23:16:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0,001s [23:16:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0,000s [23:16:47] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3,909s [23:16:48] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemAmethyst#inventory', trying to load the variant from the blockstate json [23:16:48] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemBronzeIngot#inventory', trying to load the variant from the blockstate json [23:16:48] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemCopperIngot#inventory', trying to load the variant from the blockstate json [23:16:48] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemOnyx#inventory', trying to load the variant from the blockstate json [23:16:48] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemPlatinumIngot#inventory', trying to load the variant from the blockstate json [23:16:48] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemPlatinumNugget#inventory', trying to load the variant from the blockstate json [23:16:48] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemRuby#inventory', trying to load the variant from the blockstate json [23:16:48] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemSapphire#inventory', trying to load the variant from the blockstate json [23:16:48] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemSilverIngot#inventory', trying to load the variant from the blockstate json [23:16:48] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemTinIngot#inventory', trying to load the variant from the blockstate json [23:16:48] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 1,720s [23:16:48] [Client thread/INFO] [FML/]: Max texture size: 16384 [23:16:48] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0,003s [23:16:48] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,004s [23:16:48] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload - missingno took 0,001s [23:16:50] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 1,167s [23:16:50] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemTinIngot#inventory for item "mineralz:ItemTinIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemTinIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1386) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:589) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:644) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [23:16:50] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemTinIngot#inventory for item "mineralz:ItemTinIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemTinIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [23:16:50] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemCopperIngot#inventory for item "mineralz:ItemCopperIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemCopperIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1386) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:589) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:644) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [23:16:50] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemCopperIngot#inventory for item "mineralz:ItemCopperIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemCopperIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [23:16:50] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemRuby#inventory for item "mineralz:ItemRuby", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemRuby with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1386) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:589) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:644) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [23:16:50] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemRuby#inventory for item "mineralz:ItemRuby", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemRuby#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [23:16:50] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemBronzeIngot#inventory for item "mineralz:ItemBronzeIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemBronzeIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1386) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:589) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:644) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [23:16:50] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemBronzeIngot#inventory for item "mineralz:ItemBronzeIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemBronzeIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:538) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 20 more [23:16:50] [Client thread/ERROR] [FML/]: Suppressed additional 5 model loading errors for domain mineralz [23:16:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 7,349s [23:16:50] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 7,518s [23:16:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0,005s [23:16:50] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0,343s [23:16:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0,000s [23:16:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0,000s [23:16:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0,000s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0,281s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 8,158s [23:16:51] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp [23:16:51] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0,001s [23:16:51] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML [23:16:51] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0,000s [23:16:51] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge [23:16:51] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0,000s [23:16:51] [Client thread/TRACE] [mineralz/mineralz]: Sending event FMLInitializationEvent to mod mineralz [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.Mineralz:init:35]: Init [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemAmethyst [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemBronzeIngot [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemCopperIngot [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemOnyx [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemPlatinumIngot [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemPlatinumNugget [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemRuby [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemSapphire [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemSilverIngot [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.init.MineralzItems:registerRender:75]: mineralz:ItemTinIngot [23:16:51] [Client thread/TRACE] [mineralz/mineralz]: Sent event FMLInitializationEvent to mod mineralz [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Mineralz took 0,003s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0,004s [23:16:51] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp [23:16:51] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp [23:16:51] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0,004s [23:16:51] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML [23:16:51] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML [23:16:51] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0,000s [23:16:51] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge [23:16:51] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge [23:16:51] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0,000s [23:16:51] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mineralz [23:16:51] [Client thread/TRACE] [mineralz/mineralz]: Sending event IMCEvent to mod mineralz [23:16:51] [Client thread/TRACE] [mineralz/mineralz]: Sent event IMCEvent to mod mineralz [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Mineralz took 0,000s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0,005s [23:16:51] [Client thread/INFO] [FML/]: Injecting itemstacks [23:16:51] [Client thread/INFO] [FML/]: Itemstack injection complete [23:16:51] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp [23:16:51] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0,000s [23:16:51] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML [23:16:51] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0,000s [23:16:51] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge [23:16:51] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0,013s [23:16:51] [Client thread/TRACE] [mineralz/mineralz]: Sending event FMLPostInitializationEvent to mod mineralz [23:16:51] [Client thread/INFO] [sTDOUT/mineralz]: [com.quizer9o8.mineralz.Mineralz:postInit:42]: Post Init [23:16:51] [Client thread/TRACE] [mineralz/mineralz]: Sent event FMLPostInitializationEvent to mod mineralz [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Mineralz took 0,001s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0,014s [23:16:51] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp [23:16:51] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0,000s [23:16:51] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML [23:16:51] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0,000s [23:16:51] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge [23:16:51] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking: [23:16:51] [Client thread/DEBUG] [FML/Forge]: 16: RecipeEntry("Before", UNKNOWN, ) [23:16:51] [Client thread/DEBUG] [FML/Forge]: 15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped [23:16:51] [Client thread/DEBUG] [FML/Forge]: 13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped [23:16:51] [Client thread/DEBUG] [FML/Forge]: 12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped [23:16:51] [Client thread/DEBUG] [FML/Forge]: 11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless [23:16:51] [Client thread/DEBUG] [FML/Forge]: 1: RecipeEntry("After", UNKNOWN, ) [23:16:51] [Client thread/DEBUG] [FML/Forge]: Sorting recipes [23:16:51] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0,011s [23:16:51] [Client thread/TRACE] [mineralz/mineralz]: Sending event FMLLoadCompleteEvent to mod mineralz [23:16:51] [Client thread/TRACE] [mineralz/mineralz]: Sent event FMLLoadCompleteEvent to mod mineralz [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Mineralz took 0,000s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0,013s [23:16:51] [Client thread/DEBUG] [FML/]: Freezing block and item id maps [23:16:51] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0,001s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0,011s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0,010s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Mineralz took 0,002s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0,000s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0,005s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0,000s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0,002s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0,004s [23:16:51] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0,011s [23:16:57] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3,325s [23:16:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemAmethyst#inventory', trying to load the variant from the blockstate json [23:16:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemBronzeIngot#inventory', trying to load the variant from the blockstate json [23:16:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemCopperIngot#inventory', trying to load the variant from the blockstate json [23:16:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemOnyx#inventory', trying to load the variant from the blockstate json [23:16:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemPlatinumIngot#inventory', trying to load the variant from the blockstate json [23:16:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemPlatinumNugget#inventory', trying to load the variant from the blockstate json [23:16:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemRuby#inventory', trying to load the variant from the blockstate json [23:16:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemSapphire#inventory', trying to load the variant from the blockstate json [23:16:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemSilverIngot#inventory', trying to load the variant from the blockstate json [23:16:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'mineralz:ItemTinIngot#inventory', trying to load the variant from the blockstate json [23:16:59] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 1,731s [23:16:59] [Client thread/INFO] [FML/]: Max texture size: 16384 [23:16:59] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,094s [23:16:59] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0,044s [23:16:59] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0,048s [23:17:00] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload took 0,373s [23:17:01] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 0,859s [23:17:01] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemTinIngot#inventory for item "mineralz:ItemTinIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemTinIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1386) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:589) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:644) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [23:17:01] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemTinIngot#inventory for item "mineralz:ItemTinIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemTinIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [23:17:01] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemCopperIngot#inventory for item "mineralz:ItemCopperIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemCopperIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1386) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:589) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:644) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [23:17:01] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemCopperIngot#inventory for item "mineralz:ItemCopperIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemCopperIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [23:17:01] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemRuby#inventory for item "mineralz:ItemRuby", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemRuby with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1386) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:589) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:644) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [23:17:01] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemRuby#inventory for item "mineralz:ItemRuby", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemRuby#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [23:17:01] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemBronzeIngot#inventory for item "mineralz:ItemBronzeIngot", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:item/ItemBronzeIngot with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 3 column 16 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1386) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:589) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:644) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:667) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:453) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:315) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:849) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [23:17:01] [Client thread/ERROR] [FML/]: Exception loading model for variant mineralz:ItemBronzeIngot#inventory for item "mineralz:ItemBronzeIngot", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model mineralz:ItemBronzeIngot#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:170) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:131) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:112) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:797) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:384) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] 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_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1164) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?] ... 23 more [23:17:01] [Client thread/ERROR] [FML/]: Suppressed additional 5 model loading errors for domain mineralz [23:17:01] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 10,117s [23:17:01] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 10,117s [23:17:01] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 10,140s [23:17:01] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one [23:17:01] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one [23:17:01] [Client thread/DEBUG] [Mineralz/]: Mod Mineralz is missing a pack.mcmeta file, substituting a dummy one [23:17:01] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 26,081s [23:17:19] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp [23:17:19] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp [23:17:19] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0,001s [23:17:19] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML [23:17:19] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML [23:17:19] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0,000s [23:17:19] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge [23:17:19] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge [23:17:19] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0,000s [23:17:19] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLServerAboutToStartEvent to mod mineralz [23:17:19] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLServerAboutToStartEvent to mod mineralz [23:17:19] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Mineralz took 0,000s [23:17:19] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0,002s [23:17:19] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance [23:17:19] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp [23:17:19] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp [23:17:19] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,001s [23:17:19] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML [23:17:19] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML [23:17:19] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s [23:17:19] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge [23:17:19] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge [23:17:19] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,039s [23:17:19] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLModIdMappingEvent to mod mineralz [23:17:19] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLModIdMappingEvent to mod mineralz [23:17:19] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Mineralz took 0,000s [23:17:19] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,041s [23:17:19] [server thread/INFO] [FML/]: Applying holder lookups [23:17:19] [server thread/INFO] [FML/]: Holder lookups applied [23:17:19] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world [23:17:19] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava [23:17:19] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water [23:17:19] [server thread/INFO] [FML/]: Loading dimension 0 (Mod World) (net.minecraft.server.integrated.IntegratedServer@46244f3f) [23:17:20] [server thread/INFO] [FML/]: Loading dimension 1 (Mod World) (net.minecraft.server.integrated.IntegratedServer@46244f3f) [23:17:20] [server thread/INFO] [FML/]: Loading dimension -1 (Mod World) (net.minecraft.server.integrated.IntegratedServer@46244f3f) [23:17:22] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp [23:17:22] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp [23:17:22] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0,000s [23:17:22] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML [23:17:22] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML [23:17:22] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0,000s [23:17:22] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge [23:17:22] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge [23:17:22] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0,004s [23:17:22] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLServerStartingEvent to mod mineralz [23:17:22] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLServerStartingEvent to mod mineralz [23:17:22] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Mineralz took 0,000s [23:17:22] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0,005s [23:17:22] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp [23:17:22] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp [23:17:22] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0,000s [23:17:22] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML [23:17:22] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML [23:17:22] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0,000s [23:17:22] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge [23:17:22] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge [23:17:22] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0,000s [23:17:22] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLServerStartedEvent to mod mineralz [23:17:22] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLServerStartedEvent to mod mineralz [23:17:22] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Mineralz took 0,000s [23:17:22] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0,001s [23:17:23] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: Next: HELLO [23:17:23] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: Next: HELLO [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0 [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO [23:17:23] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2 [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0 [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO [23:17:23] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2 [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: Next: HELLO [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERDATA [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO [23:17:23] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : FML@8.0.99.99,mineralz@1.0.0,Forge@12.17.0.1976,mcp@9.19 [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: Next: WAITINGCACK [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: Next: PENDINGCOMPLETE [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: Next: COMPLETE [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: Next: COMPLETE [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: Next: DONE [23:17:23] [Netty Local Client IO #0/DEBUG] [FML/]: Next: DONE [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE [23:17:23] [Netty Server IO #1/DEBUG] [FML/]: Next: DONE [23:17:23] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established [23:17:23] [server thread/INFO] [FML/]: [server thread] Server side modded connection established [23:17:23] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0 [23:17:24] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Mod World [23:17:30] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Mod World [23:17:31] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp [23:17:31] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Coder Pack took 0,001s [23:17:31] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML [23:17:31] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Forge Mod Loader took 0,001s [23:17:31] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge [23:17:31] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Forge took 0,000s [23:17:31] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLServerStoppingEvent to mod mineralz [23:17:31] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLServerStoppingEvent to mod mineralz [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Mineralz took 0,000s [23:17:31] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopping took 0,002s [23:17:31] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save Mod World [23:17:31] [server thread/INFO] [FML/]: Unloading dimension 0 [23:17:31] [server thread/INFO] [FML/]: Unloading dimension -1 [23:17:31] [server thread/INFO] [FML/]: Unloading dimension 1 [23:17:31] [server thread/DEBUG] [FML/]: Reverting to frozen data state. [23:17:31] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp [23:17:31] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0,000s [23:17:31] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML [23:17:31] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0,000s [23:17:31] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge [23:17:31] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0,041s [23:17:31] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLModIdMappingEvent to mod mineralz [23:17:31] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLModIdMappingEvent to mod mineralz [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Mineralz took 0,000s [23:17:31] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0,042s [23:17:31] [server thread/INFO] [FML/]: Applying holder lookups [23:17:31] [server thread/INFO] [FML/]: Holder lookups applied [23:17:31] [server thread/DEBUG] [FML/]: Frozen state restored. [23:17:31] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp [23:17:31] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Coder Pack took 0,001s [23:17:31] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML [23:17:31] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Forge Mod Loader took 0,001s [23:17:31] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge [23:17:31] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Forge took 0,000s [23:17:31] [server thread/TRACE] [mineralz/mineralz]: Sending event FMLServerStoppedEvent to mod mineralz [23:17:31] [server thread/TRACE] [mineralz/mineralz]: Sent event FMLServerStoppedEvent to mod mineralz [23:17:31] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Mineralz took 0,001s [23:17:31] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopped took 0,002s
  14. Tnx for pointing it out. After I changed the enum name it worked, at last .
  15. I've spent counless hours of checking my code to see if i mispelled anything wrong but i didn't My MineralzItems.init and MineralzItems.register are still red for no freaking reason and I keep getting crash reports that doesnt make any sense. I'm so frustated by those stupid problems i think i might give up making mods. This are all the Classes I got so far. Mineralz package com.quizer9o8.mineralz; import com.quizer9o8.mineralz.Reference.MineralzItems; import com.quizer9o8.mineralz.proxy.CommonProxy; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.Mod.Instance; 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; @Mod(modid = Reference.MOD_ID, name = Reference.NAME, version = Reference.VERSION, acceptedMinecraftVersions = Reference.ACCEPTED_VERSIONS) public class Mineralz { @Instance public static Mineralz instance; @SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide = Reference.SERVER_PROXY_CLASS) public static CommonProxy proxy; @EventHandler public void preInit(FMLPreInitializationEvent event) { System.out.println("Pre Init"); MineralzItems.init(); MineralzItems.register(); } @EventHandler public void init(FMLInitializationEvent event) { System.out.println("Init"); proxy.init(); } @EventHandler public void postInit(FMLPostInitializationEvent event) { System.out.println("Post Init"); } } Reference package com.quizer9o8.mineralz; import com.quizer9o8.mineralz.items.ItemAmethyst; public class Reference { public static final String MOD_ID = "mineralz"; public static final String NAME = "Mineralz"; public static final String VERSION = "1.0.0"; public static final String ACCEPTED_VERSIONS = "[1.9.4]"; public static final String CLIENT_PROXY_CLASS = "com.quizer9o8.mineralz.proxy.ClientProxy"; public static final String SERVER_PROXY_CLASS = "com.quizer9o8.mineralz.proxy.ServerProxy"; public static enum MineralzItems { AMETHYST("amethyst", "ItemAmethyst"); private String unlocalizedName; private String registryName; MineralzItems(String unlocalizedName, String registryName) { this.unlocalizedName = unlocalizedName; this.registryName = registryName; } public String getUnlocalizedName(){ return unlocalizedName; } public String getRegistryName(){ return registryName; } } } MineralzItems package com.quizer9o8.mineralz.init; import com.quizer9o8.mineralz.Reference; import com.quizer9o8.mineralz.items.ItemAmethyst; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.item.Item; import net.minecraftforge.fml.common.registry.GameRegistry; public class MineralzItems { public static Item amethyst; public static void init() { amethyst = new ItemAmethyst(); } public static void register() { GameRegistry.register(amethyst); } public static void registerRenders() { registerRender(amethyst); } private static void registerRender(Item item) { Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Reference.MOD_ID + ":" + item.getUnlocalizedName().substring(5), "inventory")); } } ClientProxy package com.quizer9o8.mineralz.proxy; import com.quizer9o8.mineralz.init.MineralzItems; public class ClientProxy implements CommonProxy { @Override public void init() { MineralzItems.registerRenders(); } } CommonProxy package com.quizer9o8.mineralz.proxy; public interface CommonProxy { public void init(); } ServerProxy package com.quizer9o8.mineralz.proxy; public class ServerProxy implements CommonProxy { @Override public void init() { } } Crash Report ---- Minecraft Crash Report ---- // I let you down. Sorry Time: 14-7-16 11:18 Description: There was a severe problem during mod loading that has caused the game to fail net.minecraftforge.fml.common.LoaderException: java.lang.Error: Unresolved compilation problems: The method init() is undefined for the type Reference.MineralzItems The method register() is undefined for the type Reference.MineralzItems at net.minecraftforge.fml.common.LoadController.transition(LoadController.java:179) at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:589) at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:249) at net.minecraft.client.Minecraft.startGame(Minecraft.java:475) at net.minecraft.client.Minecraft.run(Minecraft.java:384) at net.minecraft.client.main.Main.main(Main.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) Caused by: java.lang.Error: Unresolved compilation problems: The method init() is undefined for the type Reference.MineralzItems The method register() is undefined for the type Reference.MineralzItems at com.quizer9o8.mineralz.Mineralz.preInit(Mineralz.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:568) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:228) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:206) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135) at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:586) ... 16 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.9.4 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_92, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 831742760 bytes (793 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.28 Powered by Forge 12.17.0.1976 4 mods loaded, 4 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCH mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) UCH FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.9.4-12.17.0.1976.jar) UCH Forge{12.17.0.1976} [Minecraft Forge] (forgeSrc-1.9.4-12.17.0.1976.jar) UCE mineralz{1.0.0} [Mineralz] (bin) Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.4.0 - Build 10.18.15.4278' Renderer: 'Intel(R) HD Graphics 5500'
  16. Got another crash report, man they keep coming: ---- Minecraft Crash Report ---- // Oops. Time: 10-7-16 17:20 Description: Initializing game java.lang.NullPointerException: Initializing game at net.minecraft.item.crafting.CraftingManager.addRecipe(CraftingManager.java:271) at net.minecraftforge.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:223) at net.minecraftforge.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:218) at com.quizer9o8.mineralz.Recipes.init(Recipes.java:13) at com.quizer9o8.mineralz.Mineralz.preInit(Mineralz.java:34) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:568) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:228) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:206) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135) at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:586) at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:249) at net.minecraft.client.Minecraft.startGame(Minecraft.java:475) at net.minecraft.client.Minecraft.run(Minecraft.java:384) at net.minecraft.client.main.Main.main(Main.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace: at net.minecraft.item.crafting.CraftingManager.addRecipe(CraftingManager.java:271) at net.minecraftforge.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:223) at net.minecraftforge.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:218) at com.quizer9o8.mineralz.Recipes.init(Recipes.java:13) at com.quizer9o8.mineralz.Mineralz.preInit(Mineralz.java:34) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:568) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:228) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:206) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135) at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:586) at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:249) at net.minecraft.client.Minecraft.startGame(Minecraft.java:475) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.run(Minecraft.java:384) at net.minecraft.client.main.Main.main(Main.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) -- System Details -- Details: Minecraft Version: 1.9.4 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_92, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 814146192 bytes (776 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.28 Powered by Forge 12.17.0.1976 4 mods loaded, 4 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCH mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) UCH FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.9.4-12.17.0.1976.jar) UCH Forge{12.17.0.1976} [Minecraft Forge] (forgeSrc-1.9.4-12.17.0.1976.jar) UCE mineralz{1.0.0} [Mineralz] (bin) Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.4.0 - Build 10.18.15.4278' Renderer: 'Intel(R) HD Graphics 5500' Launched Version: 1.9.4 LWJGL: 2.9.4 OpenGL: Intel(R) HD Graphics 5500 GL version 4.4.0 - Build 10.18.15.4278, Intel GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported. Using VBOs: No Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: Current Language: English (US) Profiler Position: N/A (disabled) CPU: net.minecraft.client.Minecraft$15@69173bb7
  17. package com.quizer9o8.mineralz.init; import com.quizer9o8.mineralz.Reference; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.item.Item; public class MineralzItems { private static final String mineralz = null; //Items public static Item tin_ingot; public static Item copper_ingot; public static Item bronze_ingot; public static Item silver_ingot; public static Item platinum_ingot; public static Item silver_nugget; public static Item platinum_nugget; public static Item ruby; public static Item sapphire; public static Item amethyst; public static Item onyx; public static void register() { registerItem(tin_ingot); registerItem(copper_ingot); registerItem(bronze_ingot); registerItem(silver_ingot); registerItem(platinum_ingot); registerItem(silver_nugget); registerItem(platinum_nugget); registerItem(ruby); registerItem(sapphire); registerItem(amethyst); registerItem(onyx); } public static void registerRenders() { registerRender(tin_ingot); registerRender(copper_ingot); registerRender(bronze_ingot); registerRender(silver_ingot); registerRender(platinum_ingot); registerRender(silver_nugget); registerRender(platinum_nugget); registerRender(ruby); registerRender(sapphire); registerRender(amethyst); registerRender(onyx); } public static void registerItem(Item item) { Item setRegistryName, Gameregistry; System.out.println("Registered Item: " + item.getUnlocalizedName().substring(5)); } public static void registerRender(Item item) { Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Reference.MODID + ":" + item.getUnlocalizedName().substring(5), "inventory")); } }
  18. I've changed the Reference from com.mineralz to com.quizer9o8.mineralz and imported everything over from the old map to the new one. It should work by now but it still doesn't reconize com.quizer9o8.mineralz. EDIT: wow how did i not see this. I switched com. and quizer9o8 from place what caused the error. I've fixed it but now i'm getting this ---- Minecraft Crash Report ---- // This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~] Time: 10-7-16 16:32 Description: Initializing game java.lang.NullPointerException: Initializing game at com.quizer9o8.mineralz.init.MineralzItems.registerItem(MineralzItems.java:58) at com.quizer9o8.mineralz.init.MineralzItems.register(MineralzItems.java:28) at com.quizer9o8.mineralz.Mineralz.preInit(Mineralz.java:29) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:568) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:228) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:206) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135) at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:586) at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:249) at net.minecraft.client.Minecraft.startGame(Minecraft.java:475) at net.minecraft.client.Minecraft.run(Minecraft.java:384) at net.minecraft.client.main.Main.main(Main.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace: at com.quizer9o8.mineralz.init.MineralzItems.registerItem(MineralzItems.java:58) at com.quizer9o8.mineralz.init.MineralzItems.register(MineralzItems.java:28) at com.quizer9o8.mineralz.Mineralz.preInit(Mineralz.java:29) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:568) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:228) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:206) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135) at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:586) at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:249) at net.minecraft.client.Minecraft.startGame(Minecraft.java:475) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.run(Minecraft.java:384) at net.minecraft.client.main.Main.main(Main.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) -- System Details -- Details: Minecraft Version: 1.9.4 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_92, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 670618448 bytes (639 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.28 Powered by Forge 12.17.0.1976 4 mods loaded, 4 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCH mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) UCH FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.9.4-12.17.0.1976.jar) UCH Forge{12.17.0.1976} [Minecraft Forge] (forgeSrc-1.9.4-12.17.0.1976.jar) UCE mineralz{1.0.0} [Mineralz] (bin) Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.4.0 - Build 10.18.15.4278' Renderer: 'Intel(R) HD Graphics 5500' Launched Version: 1.9.4 LWJGL: 2.9.4 OpenGL: Intel(R) HD Graphics 5500 GL version 4.4.0 - Build 10.18.15.4278, Intel GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported. Using VBOs: No Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: Current Language: English (US) Profiler Position: N/A (disabled) CPU: net.minecraft.client.Minecraft$15@2154de40[code\]
  19. I'm currently creating a mod called Mineralz. Every time I Run a client to test my mod I get this crash report: ---- Minecraft Crash Report ---- // Don't do that. Time: 10-7-16 15:23 Description: There was a severe problem during mod loading that has caused the game to fail net.minecraftforge.fml.common.LoaderException: java.lang.ClassNotFoundException: quizer9o8.com.mineralz.proxy.ClientProxy at net.minecraftforge.fml.common.ProxyInjector.inject(ProxyInjector.java:81) at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:548) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:228) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:206) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135) at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:524) at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:210) at net.minecraft.client.Minecraft.startGame(Minecraft.java:475) at net.minecraft.client.Minecraft.run(Minecraft.java:384) at net.minecraft.client.main.Main.main(Main.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) Caused by: java.lang.ClassNotFoundException: quizer9o8.com.mineralz.proxy.ClientProxy at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at net.minecraftforge.fml.common.ModClassLoader.loadClass(ModClassLoader.java:65) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Unknown Source) at net.minecraftforge.fml.common.ProxyInjector.inject(ProxyInjector.java:64) ... 39 more Caused by: java.lang.NullPointerException at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ... 45 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.9.4 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_92, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 675542336 bytes (644 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.28 Powered by Forge 12.17.0.1976 4 mods loaded, 4 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UC mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) UC FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.9.4-12.17.0.1976.jar) UC Forge{12.17.0.1976} [Minecraft Forge] (forgeSrc-1.9.4-12.17.0.1976.jar) UE mineralz{1.0.0} [Mineralz] (bin) Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.4.0 - Build 10.18.15.4278' Renderer: 'Intel(R) HD Graphics 5500' I'm using Eclipse to create my mod, I've checked if anything was out of place but I didn't found any errors. I don't know how to read crash reports so where should I look for next time?
  20. I'm not trying to spam useless information, I'm posting this because I hope to find a solution for my problem. I'm very new to this so it will take me a while to understand certain things. We all started somewhere didn't we? But thank you for the information, I'll try to do something with it.
  21. I'm trying to make some tools and armor for my mod but certain parts in the text get highlighted red, I've tried everything but I just don't know how to fix it. This is the only class with those kind of errors. package com.mineralz.init; import com.mineralz.Mineralz; import com.mineralz.Reference; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.block.model.ModelResourceLocation; import net.minecraft.init.SoundEvents; import net.minecraft.item.Item; import net.minecraft.item.ItemArmor.ArmorMaterial; import net.minecraftforge.common.util.EnumHelper; import net.minecraftforge.fml.common.registry.GameRegistry; public class MineralzItems { private static final String mineralz = null; //Items public static Item tin_ingot; public static Item copper_ingot; public static Item bronze_ingot; public static Item silver_ingot; public static Item platinum_ingot; public static Item silver_nugget; public static Item platinum_nugget; public static Item ruby; public static Item sapphire; public static Item amethyst; public static Item onyx; // Tools public static Item.ToolMaterial tin_pickaxe = EnumHelper.addToolMaterial("tin_pickaxe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial tin_shovel = EnumHelper.addToolMaterial("tin_shovel", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial tin_axe = EnumHelper.addToolMaterial("tin_axe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial tin_hoe = EnumHelper.addToolMaterial("tin_hoe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial copper_pickaxe = EnumHelper.addToolMaterial("copper_pickaxe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial copper_shovel = EnumHelper.addToolMaterial("copper_shovel", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial copper_axe = EnumHelper.addToolMaterial("copper_axe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial copper_hoe = EnumHelper.addToolMaterial("copper_hoe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial bronze_pickaxe = EnumHelper.addToolMaterial("bronze_pickaxe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial bronze_shovel = EnumHelper.addToolMaterial("bronze_shovel", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial bronze_axe = EnumHelper.addToolMaterial("bronze_axe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial bronze_hoe = EnumHelper.addToolMaterial("bronze_hoe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial silver_pickaxe = EnumHelper.addToolMaterial("silver_pickaxe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial silver_shovel = EnumHelper.addToolMaterial("silver_shovel", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial silver_axe = EnumHelper.addToolMaterial("silver_axe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial silver_hoe = EnumHelper.addToolMaterial("silver_hoe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial platinum_pickaxe = EnumHelper.addToolMaterial("platinum_pickaxe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial platinum_shovel = EnumHelper.addToolMaterial("platinum_shovel", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial platinum_axe = EnumHelper.addToolMaterial("platinum_axe", 2, 125, 2.0F, 2.0F, 30); public static Item.ToolMaterial platinum_hoe = EnumHelper.addToolMaterial("platinum_hoe", 2, 125, 2.0F, 2.0F, 30); //Weapons public static Item tin_sword; public static Item copper_sword; public static Item bronze_sword; public static Item silver_sword; public static Item platinum_sword; //Armor public static ArmorMaterial tin_helmet = EnumHelper.addArmorMaterial("tin_helmet", mineralz, 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial tin_chestplate = EnumHelper.addArmorMaterial("tin_chestplate", "mineralz", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial tin_leggings = EnumHelper.addArmorMaterial("tin_leggings", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial tin_boots = EnumHelper.addArmorMaterial("tin_boots", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial copper_helmet = EnumHelper.addArmorMaterial("copper_helmet", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial copper_chestplate = EnumHelper.addArmorMaterial("copper_chestplate", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial copper_leggings = EnumHelper.addArmorMaterial("copper_leggings", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial copper_boots = EnumHelper.addArmorMaterial("copper_boots", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial bronze_helmet = EnumHelper.addArmorMaterial("bronze_helmet", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial bronze_chestplate = EnumHelper.addArmorMaterial("bronze_chestplate", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial bronze_leggings = EnumHelper.addArmorMaterial("bronze_leggings", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial bronze_boots = EnumHelper.addArmorMaterial("bronze_boots", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_iron); public static ArmorMaterial silver_helmet = EnumHelper.addArmorMaterial("silver_helmet", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_gold); public static ArmorMaterial silver_chestplate = EnumHelper.addArmorMaterial("silver_helmet", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_gold); public static ArmorMaterial silver_leggings = EnumHelper.addArmorMaterial("silver_helmet", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_gold); public static ArmorMaterial silver_boots = EnumHelper.addArmorMaterial("silver_helmet", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_gold); public static ArmorMaterial platinum_helmet = EnumHelper.addArmorMaterial("platinum_helmet", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_gold); public static ArmorMaterial platinum_chestplate = EnumHelper.addArmorMaterial("platinum_chestplate", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_gold); public static ArmorMaterial platinum_leggings = EnumHelper.addArmorMaterial("platinum_leggings", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_gold); public static ArmorMaterial platinum_boots = EnumHelper.addArmorMaterial("platinum_boots", "mineralz:", 125, 3, 30, SoundEvents.item_armor_equip_gold); public static void init() { //Items tin_ingot = new Item().setUnlocalizedName("tin_ingot").setCreativeTab(Mineralz.tabMineralz); copper_ingot = new Item().setUnlocalizedName("copper_ingot").setCreativeTab(Mineralz.tabMineralz); bronze_ingot = new Item().setUnlocalizedName("bronze_ingot").setCreativeTab(Mineralz.tabMineralz); silver_ingot = new Item().setUnlocalizedName("silver_ingot").setCreativeTab(Mineralz.tabMineralz); platinum_ingot = new Item().setUnlocalizedName("platinum_ingot").setCreativeTab(Mineralz.tabMineralz); silver_nugget = new Item().setUnlocalizedName("silver_nugget").setCreativeTab(Mineralz.tabMineralz); platinum_nugget = new Item().setUnlocalizedName("platinum_nugget").setCreativeTab(Mineralz.tabMineralz); ruby = new Item().setUnlocalizedName("ruby").setCreativeTab(Mineralz.tabMineralz); sapphire = new Item().setUnlocalizedName("sapphire").setCreativeTab(Mineralz.tabMineralz); amethyst = new Item().setUnlocalizedName("amethyst").setCreativeTab(Mineralz.tabMineralz); onyx = new Item().setUnlocalizedName("onyx").setCreativeTab(Mineralz.tabMineralz); //Tools tin_pickaxe = new Item().setUnlocalizedName("tin_Pickaxe").setCreativeTab(Mineralz.tabMineralz); tin_shovel = new Item().setUnlocalizedName("tin_shovel").setCreativeTab(Mineralz.tabMineralz); tin_axe = new Item().setUnlocalizedName("tin_axe").setCreativeTab(Mineralz.tabMineralz); tin_hoe = new Item().setUnlocalizedName("tin_hoe").setCreativeTab(Mineralz.tabMineralz); copper_pickaxe = new Item().setUnlocalizedName("copper_pickaxe").setCreativeTab(Mineralz.tabMineralz); copper_shovel = new Item().setUnlocalizedName("copper_shovel").setCreativeTab(Mineralz.tabMineralz); copper_axe = new Item().setUnlocalizedName("copper_axe").setCreativeTab(Mineralz.tabMineralz); copper_hoe = new Item().setUnlocalizedName("copper_hoe").setCreativeTab(Mineralz.tabMineralz); bronze_pickaxe = new Item().setUnlocalizedName("bronze_pickaxe").setCreativeTab(Mineralz.tabMineralz); bronze_shovel = new Item().setUnlocalizedName("bronze_shovel").setCreativeTab(Mineralz.tabMineralz); bronze_axe = new Item().setUnlocalizedName("bronze_axe").setCreativeTab(Mineralz.tabMineralz); bronze_hoe = new Item().setUnlocalizedName("bronze_hoe").setCreativeTab(Mineralz.tabMineralz); silver_pickaxe = new Item().setUnlocalizedName("silver_pickaxe").setCreativeTab(Mineralz.tabMineralz); silver_shovel = new Item().setUnlocalizedName("silver_shovel").setCreativeTab(Mineralz.tabMineralz); silver_axe = new Item().setUnlocalizedName("silver_axe").setCreativeTab(Mineralz.tabMineralz); silver_hoe = new Item().setUnlocalizedName("silver_hoe").setCreativeTab(Mineralz.tabMineralz); platinum_pickaxe = new Item().setUnlocalizedName("platinum_pickaxe").setCreativeTab(Mineralz.tabMineralz); platinum_shovel = new Item().setUnlocalizedName("platinum_shovel").setCreativeTab(Mineralz.tabMineralz); platinum_axe = new Item().setUnlocalizedName("platinum_axe").setCreativeTab(Mineralz.tabMineralz); platinum_hoe = new Item().setUnlocalizedName("platinum_hoe").setCreativeTab(Mineralz.tabMineralz); //Weapons tin_sword = new Item().setUnlocalizedName("tin_sword").setCreativeTab(Mineralz.tabMineralz); copper_sword = new Item().setUnlocalizedName("copper_sword").setCreativeTab(Mineralz.tabMineralz); bronze_sword = new Item().setUnlocalizedName("bronze_sword").setCreativeTab(Mineralz.tabMineralz); silver_sword = new Item().setUnlocalizedName("silver_sword").setCreativeTab(Mineralz.tabMineralz); platinum_sword = new Item().setUnlocalizedName("platinum_sword").setCreativeTab(Mineralz.tabMineralz); //Armor tin_helmet = new MineralzArmor(4, 6, true).setUnlocalizedName(null, tin_helmet, 1, 0).setUnlocalizedName("tin_helmet").setCreativeTab(Mineralz.tabMineralz); tin_chestplate = new MineralzArmor().setUnlocalizedName("tin_chestplate").setCreativeTab(Mineralz.tabMineralz); tin_leggings = new MineralzArmor().setUnlocalizedName("tin_leggings").setCreativeTab(Mineralz.tabMineralz); tin_boots = new MineralzArmor().setUnlocalizedName("tin_boots").setCreativeTab(Mineralz.tabMineralz); copper_helmet = new MineralzArmor().setUnlocalizedName("copper_helmet").setCreativeTab(Mineralz.tabMineralz); copper_chestplate = new MineralzArmor().setUnlocalizedName("copper_chestplate").setCreativeTab(Mineralz.tabMineralz); copper_leggings = new MineralzArmor().setUnlocalizedName("copper_leggings").setCreativeTab(Mineralz.tabMineralz); copper_boots = new MineralzArmor().setUnlocalizedName("copper_boots").setCreativeTab(Mineralz.tabMineralz); bronze_helmet = new MineralzArmor().setUnlocalizedName("bronze_helmet").setCreativeTab(Mineralz.tabMineralz); bronze_chestplate = new MineralzArmor().setUnlocalizedName("bronze_chestplate").setCreativeTab(Mineralz.tabMineralz); bronze_leggings = new MineralzArmor().setUnlocalizedName("bronze_leggings").setCreativeTab(Mineralz.tabMineralz); bronze_boots = new MineralzArmor().setUnlocalizedName("bronze_boots").setCreativeTab(Mineralz.tabMineralz); silver_helmet = new MineralzArmor().setUnlocalizedName("silver_helmet").setCreativeTab(Mineralz.tabMineralz); silver_chestplate = new MineralzArmor().setUnlocalizedName("silver_chestplate").setCreativeTab(Mineralz.tabMineralz); silver_leggings = new MineralzArmor().setUnlocalizedName("silver_leggings").setCreativeTab(Mineralz.tabMineralz); silver_boots = new MineralzArmor().setUnlocalizedName("silver_boots").setCreativeTab(Mineralz.tabMineralz); platinum_helmet = new MineralzArmor().setUnlocalizedName("platinum_helmet").setCreativeTab(Mineralz.tabMineralz); platinum_chestplate = new MineralzArmor().setUnlocalizedName("platinum_chestplate").setCreativeTab(Mineralz.tabMineralz); platinum_leggings = new MineralzArmor().setUnlocalizedName("platinum_leggings").setCreativeTab(Mineralz.tabMineralz); platinum_boots = new MineralzArmor().setUnlocalizedName("platinum_boots").setCreativeTab(Mineralz.tabMineralz); } public static void register() { registerItem(tin_ingot); registerItem(copper_ingot); registerItem(bronze_ingot); registerItem(silver_ingot); registerItem(platinum_ingot); registerItem(silver_nugget); registerItem(platinum_nugget); registerItem(ruby); registerItem(sapphire); registerItem(amethyst); registerItem(onyx); registerItem(tin_helmet); registerItem(tin_chestplate); registerItem(tin_leggings); registerItem(tin_boots); registerItem(tin_sword); registerItem(tin_pickaxe); registerItem(tin_shovel); registerItem(tin_axe); registerItem(tin_hoe); registerItem(copper_helmet); registerItem(copper_chestplate); registerItem(copper_leggings); registerItem(copper_boots); registerItem(copper_sword); registerItem(copper_pickaxe); registerItem(copper_shovel); registerItem(copper_axe); registerItem(copper_hoe); registerItem(bronze_helmet); registerItem(bronze_chestplate); registerItem(bronze_leggings); registerItem(bronze_boots); registerItem(bronze_sword); registerItem(bronze_pickaxe); registerItem(bronze_shovel); registerItem(bronze_axe); registerItem(bronze_hoe); registerItem(silver_helmet); registerItem(silver_chestplate); registerItem(silver_leggings); registerItem(silver_boots); registerItem(silver_sword); registerItem(silver_pickaxe); registerItem(silver_shovel); registerItem(silver_axe); registerItem(silver_hoe); registerItem(platinum_helmet); registerItem(platinum_chestplate); registerItem(platinum_leggings); registerItem(platinum_boots); registerItem(platinum_sword); registerItem(platinum_pickaxe); registerItem(platinum_shovel); registerItem(platinum_axe); registerItem(platinum_hoe); } public static void registerRenders() { registerRender(tin_ingot); registerRender(copper_ingot); registerRender(bronze_ingot); registerRender(silver_ingot); registerRender(platinum_ingot); registerRender(silver_nugget); registerRender(platinum_nugget); registerRender(ruby); registerRender(sapphire); registerRender(amethyst); registerRender(onyx); registerRender(tin_helmet); registerRender(tin_chestplate); registerRender(tin_leggings); registerRender(tin_boots); registerRender(tin_sword); registerRender(tin_pickaxe); registerRender(tin_shovel); registerRender(tin_axe); registerRender(tin_hoe); registerRender(copper_helmet); registerRender(copper_chestplate); registerRender(copper_leggings); registerRender(copper_boots); registerRender(copper_sword); registerRender(copper_pickaxe); registerRender(copper_shovel); registerRender(copper_axe); registerRender(copper_hoe); registerRender(bronze_helmet); registerRender(bronze_chestplate); registerRender(bronze_leggings); registerRender(bronze_boots); registerRender(bronze_sword); registerRender(bronze_pickaxe); registerRender(bronze_shovel); registerRender(bronze_axe); registerRender(bronze_hoe); registerRender(silver_helmet); registerRender(silver_chestplate); registerRender(silver_leggings); registerRender(silver_boots); registerRender(silver_sword); registerRender(silver_pickaxe); registerRender(silver_shovel); registerRender(silver_axe); registerRender(silver_hoe); registerRender(platinum_helmet); registerRender(platinum_chestplate); registerRender(platinum_leggings); registerRender(platinum_boots); registerRender(platinum_sword); registerRender(platinum_pickaxe); registerRender(platinum_shovel); registerRender(platinum_axe); registerRender(platinum_hoe); } public static void registerItem(Item item) { GameRegistry.registerItem(item, item.getUnlocalizedName().substring(5)); System.out.println("Registered Item: " + item.getUnlocalizedName().substring(5)); } public static void registerRender(Item item) { Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Reference.MODID + ":" + item.getUnlocalizedName().substring(5), "inventory")); } }
  22. Ok i found it but now there's a new problem. I've been following a modding tutorial for 1.8.9 how to make your custom armor and this text keeps lighting up red. public static ArmorMaterial tin_helmet = EnumHelper.addArmorMaterial("tin_helmet", "mineralz", 125, 3, 30, SoundEvents.item_armor_equip_iron); now what?
  23. I can't find any of it. Isn't eclipse supposed to have a copy of minecraft saved somewhere? EDIT: Nvm found the source but where are the file sounds exactly located? That wizard can't do shiz...
  24. Ok where can I find the exact location of that file? I'm having trouble finding it
  25. I'm adding in armor for my mod and I came across this: public static ArmorMaterial tin_helmet = EnumHelper.addArmorMaterial("tin_helmet", "mineralz", 125, 1, 30, soundOnEquip); What am I supposed to do with soundOnEquip? Has this something to do with the new sound whenever you equip yourself with gear? If so where can I find the original sound of it?
×
×
  • Create New...

Important Information

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