Jump to content

Recommended Posts

Posted

so i've been modding minecraft and i made the textures and i get the pink and black textures and i look in the console and it says this

Exception loading model um:block/unstable_ore with loader instance, skipping
Posted

Post the full error message or upload the full FML log to Gist and link it here.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
[03:50:59] [Client thread/ERROR] [FML]: Exception loading model um:block/unstable_ore with loader instance, skipping

com.google.gson.JsonParseException: BlockModel requires either elements or parent, found neither

...

[03:51:00] [Client thread/ERROR] [FML]: Exception loading model um:item/unstable_ore with loader instance, skipping

com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Expected name at line 8 column 10

 

The error tells you exactly what's wrong: Your block model has no elements or parent and your item model has a syntax error.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

This page explains the block model format.

 

For a full cube model with a single texture, just use

minecraft:block/cube_all

as the parent and set the

all

texture.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

ok i have fixed that and for the item the syntax error is for some reason firstperson thirdperson andbuiltin is apparently misspelled even though it is spelt like the  minecraft code and i fixed the block and i still get an untextured block

here are the json files

{
    "parent": "builtin/generated",
    "textures": {
        "layer0": "items/um:unstable_metal"
    },
    "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 ]
        }
    }
}

 

 

Posted

Post the new FML log and all of the affected models using Gist.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

You didn't post the FML log.

 

To get syntax highlighting on Gist, give each file the appropriate extension (.java for Java code). It's much easier to read code with syntax highlighting.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
[11:16:14] [Client thread/ERROR] [FML]: Exception loading model um:block/unstable_ore with loader instance, skipping

com.google.gson.JsonParseException: BlockModel requires either elements or parent, found neither

Your block model still has the same problem as before.

 

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]:  DOMAIN items/um

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]:  domain items/um is missing 1 texture

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]:    domain items/um is missing a resource manager - it is probably a side-effect of automatic texture processing

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]:    The missing resources for domain items/um are:

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]:      textures/unstable_metal.png

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]:    No other errors exist for domain items/um

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================

[11:16:18] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

 

You've used an invalid texture path in your model. Your resource domain is

um

(your mod ID), not

items/um

. The path of the texture (relative to assets/um/textures) is

items/unstable_metal.png

, not just

unstable_metal.png

.

 

Use

um:items/unstable_metal.png

as the texture path.

 

The log is telling you exactly what's wrong, you just need to read it.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

sorry to bug you but the block still has no texture and i get this error

[12:38:19] [Client thread/WARN] [FML]: Unable to load block model: 'minecraft:block/unstable_ore' for variant: 'um:unstable_ore#normal': java.io.FileNotFoundException: minecraft:models/block/unstable_ore.json

Posted

sorry to bug you but the block still has no texture and i get this error

[12:38:19] [Client thread/WARN] [FML]: Unable to load block model: 'minecraft:block/unstable_ore' for variant: 'um:unstable_ore#normal': java.io.FileNotFoundException: minecraft:models/block/unstable_ore.json

 

Again, the error tells you exactly what went wrong and which file it looked for. There's no model at the location

minecraft:models/block/unstable_ore.json

(

minecraft

is the default resource domain if you don't specify one), presumably there is one in the at that path in the

um

resource domain.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

so i have another error last time i swear and i've read the entire error report and i have found nothing when you hold the unstable ore block it gives the untextured block again but once you place it down it become textured

Posted

Does your block have an item model?

 

If you name your block's item model the same as the block's registry name, it will automatically be loaded without having to be registered manually.

 

Please post the FML log (from logs/fml-client-latest.log, not your IDE's console), it will almost certainly tell you what went wrong.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

i did fix it was an extra comma i added but i still get an untextured block

[09:48:54] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[09:48:54] [main/INFO] [FML/]: Forge Mod Loader version 11.15.0.1715 for Minecraft 1.8.9 loading
[09:48:54] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_73, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_73
[09:48:54] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\chase\Desktop\New folder (2)\bin;C:\Users\chase\.gradle\caches\minecraft\net\minecraftforge\forge\1.8.9-11.15.0.1715\stable\20\forgeSrc-1.8.9-11.15.0.1715.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\chase\.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\chase\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.21\aefba0d5b53fbcb70860bc8046ab95d5854c07a5\authlib-1.5.21.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.7.58\eff381295d7ed3091a0aa515aa3009f641c199f1\realms-1.7.58.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\chase\.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\chase\.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\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\chase\.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\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\chase\.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\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\chase\.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\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\206c4ccaecdbcfd2a1631150c69a97bbc9c20c11\twitch-platform-6.5-natives-windows-32.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\9fdd0fd5aed0817063dcf95b69349a171f447ebd\twitch-platform-6.5-natives-windows-64.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\5f9d1ee26257b3a33f0ca06fed335ef462af659f\twitch-platform-6.5-natives-osx.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\chase\.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\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar;C:\Users\chase\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\chase\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\chase\.gradle\caches\minecraft\net\minecraftforge\forge\1.8.9-11.15.0.1715\start
[09:48:54] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jre1.8.0_73\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Program Files/Java/jre1.8.0_73/bin/server;C:/Program Files/Java/jre1.8.0_73/bin;C:/Program Files/Java/jre1.8.0_73/lib/amd64;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Skype\Phone\;C:\Users\chase\eclipse\jee-mars\eclipse;;.;C:/Users/chase/.gradle/caches/minecraft/net/minecraft/natives/1.8.9
[09:48:54] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[09:48:54] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[09:48:54] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[09:48:54] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[09:48:54] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[09:48:54] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[09:48:54] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[09:48:54] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\chase\Desktop\New folder (2)\run\.
[09:48:54] [main/DEBUG] [FML/]: Discovering coremods
[09:48:54] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[09:48:54] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[09:48:54] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[09:48:54] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[09:48:54] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[09:48:54] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[09:48:54] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[09:48:54] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[09:48:54] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[09:48:54] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
[09:48:54] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[09:48:55] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[09:48:55] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[09:48:55] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[09:48:55] [main/DEBUG] [FML/]: Injection complete
[09:48:55] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
[09:48:55] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[09:48:55] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[09:48:56] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\chase\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_stable\20\srgs\srg-mcp.srg with 27884 records
[09:49:01] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[09:49:01] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[09:49:01] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[09:49:01] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
[09:49:01] [main/DEBUG] [FML/]: Injection complete
[09:49:01] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
[09:49:01] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[09:49:01] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[09:49:01] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[09:49:01] [main/DEBUG] [FML/]: Loaded 162 rules from AccessTransformer config file forge_at.cfg
[09:49:01] [main/DEBUG] [FML/]: Validating minecraft
[09:49:05] [main/DEBUG] [FML/]: Minecraft validated, launching...
[09:49:05] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[09:49:05] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[09:49:05] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[09:49:05] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[09:49:29] [Client thread/WARN] [FML/]: =============================================================
[09:49:29] [Client thread/WARN] [FML/]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!
[09:49:29] [Client thread/WARN] [FML/]: Offendor: com/sun/jna/Native.main([Ljava/lang/String;)V
[09:49:29] [Client thread/WARN] [FML/]: Use FMLCommonHandler.exitJava instead
[09:49:29] [Client thread/WARN] [FML/]: =============================================================
[09:49:30] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.032s
[09:49:31] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ----
// My bad.

Time: 2/23/16 9:49 AM
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.8.9
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_73, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 757383536 bytes (722 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: 'ATI Technologies Inc.' Version: '4.5.13397 Compatibility Profile Context 15.200.1055.0' Renderer: 'AMD Radeon HD 8330'
[09:49:31] [Client thread/INFO] [FML/]: MinecraftForge v11.15.0.1715 Initialized
[09:49:31] [Client thread/INFO] [FML/]: Replaced 204 ore recipies
[09:49:32] [Client thread/DEBUG] [FML/]: File C:\Users\chase\Desktop\New folder (2)\run\config\injectedDependencies.json not found. No dependencies injected
[09:49:32] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[09:49:33] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\chase\Desktop\New folder (2)\bin, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\minecraft\net\minecraftforge\forge\1.8.9-11.15.0.1715\stable\20\forgeSrc-1.8.9-11.15.0.1715.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar, examining for mod candidates
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.21\aefba0d5b53fbcb70860bc8046ab95d5854c07a5\authlib-1.5.21.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.7.58\eff381295d7ed3091a0aa515aa3009f641c199f1\realms-1.7.58.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\206c4ccaecdbcfd2a1631150c69a97bbc9c20c11\twitch-platform-6.5-natives-windows-32.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\9fdd0fd5aed0817063dcf95b69349a171f447ebd\twitch-platform-6.5-natives-windows-64.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\5f9d1ee26257b3a33f0ca06fed335ef462af659f\twitch-platform-6.5-natives-osx.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\chase\.gradle\caches\minecraft\net\minecraftforge\forge\1.8.9-11.15.0.1715\start, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[09:49:33] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[09:49:33] [Client thread/INFO] [FML/]: Searching C:\Users\chase\Desktop\New folder (2)\run\mods for mods
[09:49:33] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods
[09:49:33] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.blockstates
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.lang
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.models
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.models.block
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.models.item
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.textures
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.textures.blocks
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.textures.items
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package sl3nd3rpanda
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package sl3nd3rpanda.mod
[09:49:33] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (sl3nd3rpanda.mod.Main) - loading
[09:49:33] [Client thread/TRACE] [um/]: Parsed dependency info : [FML] [FML] []
[09:49:33] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.8.9-11.15.0.1715.jar for potential mods
[09:49:33] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.8.9-11.15.0.1715.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file oshi-core-1.1.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container oshi-core-1.1.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file jna-3.4.0.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container jna-3.4.0.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file platform-3.4.0.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container platform-3.4.0.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file jline-2.13.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container jline-2.13.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file
[09:49:38] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods
[09:49:38] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file
[09:49:38] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
[09:49:38] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[09:49:38] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
[09:49:38] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[09:49:38] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
[09:49:38] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
[09:49:38] [Client thread/TRACE] [FML/]: Recursing into package net
[09:49:38] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
[09:49:38] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
[09:49:38] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
[09:49:38] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
[09:49:38] [Client thread/TRACE] [FML/]: Received a system property request ''
[09:49:38] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
[09:49:38] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
[09:49:38] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8.9-11.15.0.1715.jar [en_US, en_US]
[09:49:38] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8.9-11.15.0.1715.jar [en_US, en_US]
[09:49:38] [Client thread/DEBUG] [um/]: Enabling mod um
[09:49:38] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/um/lang/en_US.lang into language system
[09:49:38] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
[09:49:38] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
[09:49:38] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
[09:49:38] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
[09:49:38] [Client thread/DEBUG] [FML/]: Mod sorting data
[09:49:38] [Client thread/DEBUG] [FML/]: 	um(Unstable Metallurgy:1.0): bin (required-after:FML)
[09:49:38] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[09:49:38] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[09:49:38] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.008s
[09:49:38] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[09:49:39] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[09:49:39] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[09:49:39] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[09:49:39] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, um] at CLIENT
[09:49:39] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, um] at SERVER
[09:49:41] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[09:49:41] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 3.114s
[09:49:41] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
[09:49:41] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
[09:49:41] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
[09:49:41] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (11.15.0.1715)
[09:49:41] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
[09:49:41] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.120s
[09:49:41] [Client thread/TRACE] [um/um]: Sending event FMLConstructionEvent to mod um
[09:49:41] [Client thread/TRACE] [FML/um]: Mod um is using network checker : Accepting version 1.0
[09:49:41] [Client thread/TRACE] [FML/um]: Testing mod um to verify it accepts its own version in a remote connection
[09:49:41] [Client thread/TRACE] [FML/um]: The mod um accepts its own version (1.0)
[09:49:42] [Client thread/DEBUG] [FML/um]: Attempting to inject @SidedProxy classes into um
[09:49:42] [Client thread/TRACE] [um/um]: Sent event FMLConstructionEvent to mod um
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Unstable Metallurgy took 0.269s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 3.511s
[09:49:42] [Client thread/DEBUG] [FML/]: Mod signature data
[09:49:42] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
[09:49:42] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
[09:49:42] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.18)	minecraft.jar
[09:49:42] [Client thread/DEBUG] [FML/]: 		FML	(Forge Mod Loader	8.0.99.99)	forgeSrc-1.8.9-11.15.0.1715.jar
[09:49:42] [Client thread/DEBUG] [FML/]: 		Forge	(Minecraft Forge	11.15.0.1715)	forgeSrc-1.8.9-11.15.0.1715.jar
[09:49:42] [Client thread/DEBUG] [FML/]: 		um	(Unstable Metallurgy	1.0)	bin
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.085s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.144s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.103s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Unstable Metallurgy took 0.031s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.219s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.226s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.590s
[09:49:42] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[09:49:42] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[09:49:42] [Client thread/DEBUG] [unstable Metallurgy/]: Mod Unstable Metallurgy is missing a pack.mcmeta file, substituting a dummy one
[09:49:42] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
[09:49:42] [Client thread/INFO] [FML/]: Found 384 ObjectHolder annotations
[09:49:42] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
[09:49:42] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
[09:49:42] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[09:49:42] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.004s
[09:49:42] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[09:49:43] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[09:49:43] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.101s
[09:49:43] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
[09:49:43] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
[09:49:43] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
[09:49:43] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.163s
[09:49:43] [Client thread/TRACE] [um/um]: Sending event FMLPreInitializationEvent to mod um
[09:49:43] [Client thread/TRACE] [um/um]: Sent event FMLPreInitializationEvent to mod um
[09:49:43] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Unstable Metallurgy took 0.006s
[09:49:43] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0.273s
[09:49:43] [Client thread/INFO] [FML/]: Applying holder lookups
[09:49:43] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[09:49:43] [Client thread/INFO] [FML/]: Holder lookups applied
[09:49:43] [Client thread/INFO] [FML/]: Injecting itemstacks
[09:49:43] [Client thread/INFO] [FML/]: Itemstack injection complete
[09:49:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.001s
[09:49:43] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:
{
  "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
  "promos": {
    "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.1761",
    "1.8.9-recommended": "11.15.1.1722",
    "latest": "11.15.1.1761",
    "latest-1.7.10": "10.13.2.1343",
    "recommended": "11.15.1.1722"
  }
}
[09:49:43] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: OUTDATED Target: 11.15.1.1722
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 5.371s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.016s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.017s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.028s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.040s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.001s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.039s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.001s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.001s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[09:49:59] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 7.998s
[09:50:00] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.833s
[09:50:00] [Client thread/INFO] [FML/]: Max texture size: 16384
[09:50:00] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.012s
[09:50:00] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.028s
[09:50:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 12.432s
[09:50:02] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 12.745s
[09:50:04] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.012s
[09:50:04] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 1.562s
[09:50:04] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[09:50:04] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[09:50:04] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.987s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 15.334s
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.001s
[09:50:05] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
[09:50:05] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.002s
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.004s
[09:50:05] [Client thread/TRACE] [um/um]: Sending event FMLInitializationEvent to mod um
[09:50:05] [Client thread/TRACE] [um/um]: Sent event FMLInitializationEvent to mod um
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Unstable Metallurgy took 0.045s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.051s
[09:50:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.013s
[09:50:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
[09:50:05] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
[09:50:05] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.003s
[09:50:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.002s
[09:50:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod um
[09:50:05] [Client thread/TRACE] [um/um]: Sending event IMCEvent to mod um
[09:50:05] [Client thread/TRACE] [um/um]: Sent event IMCEvent to mod um
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Unstable Metallurgy took 0.002s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.021s
[09:50:05] [Client thread/INFO] [FML/]: Injecting itemstacks
[09:50:05] [Client thread/INFO] [FML/]: Itemstack injection complete
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.002s
[09:50:05] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
[09:50:05] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.002s
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.375s
[09:50:05] [Client thread/TRACE] [um/um]: Sending event FMLPostInitializationEvent to mod um
[09:50:05] [Client thread/TRACE] [um/um]: Sent event FMLPostInitializationEvent to mod um
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Unstable Metallurgy took 0.001s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.380s
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.001s
[09:50:05] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
[09:50:05] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.002s
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
[09:50:05] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   14: RecipeEntry("Before", UNKNOWN, )
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   13: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   12: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
[09:50:05] [Client thread/DEBUG] [FML/Forge]: Sorting recipies
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.034s
[09:50:05] [Client thread/TRACE] [um/um]: Sending event FMLLoadCompleteEvent to mod um
[09:50:05] [Client thread/TRACE] [um/um]: Sent event FMLLoadCompleteEvent to mod um
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Unstable Metallurgy took 0.001s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.038s
[09:50:05] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
[09:50:05] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.001s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.045s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.043s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Unstable Metallurgy took 0.003s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.015s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.001s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.010s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.015s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.041s
[09:50:16] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3.832s
[09:50:17] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.273s
[09:50:17] [Client thread/INFO] [FML/]: Max texture size: 16384
[09:50:18] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 1.311s
[09:50:18] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0.502s
[09:50:19] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.104s
[09:50:19] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.690s
[09:50:21] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 15.534s
[09:50:21] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 15.537s
[09:50:21] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 15.629s
[09:50:21] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[09:50:21] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[09:50:21] [Client thread/DEBUG] [unstable Metallurgy/]: Mod Unstable Metallurgy is missing a pack.mcmeta file, substituting a dummy one
[09:50:21] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 49.391s
[09:50:36] [Client thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:50:38] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp
[09:50:38] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp
[09:50:38] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0.002s
[09:50:38] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML
[09:50:38] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML
[09:50:38] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0.002s
[09:50:38] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge
[09:50:38] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge
[09:50:38] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0.001s
[09:50:38] [server thread/TRACE] [um/um]: Sending event FMLServerAboutToStartEvent to mod um
[09:50:38] [server thread/TRACE] [um/um]: Sent event FMLServerAboutToStartEvent to mod um
[09:50:38] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Unstable Metallurgy took 0.002s
[09:50:38] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0.006s
[09:50:39] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:50:39] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance
[09:50:39] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[09:50:39] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[09:50:39] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.001s
[09:50:39] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[09:50:39] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[09:50:39] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.001s
[09:50:39] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[09:50:39] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[09:50:39] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.002s
[09:50:39] [server thread/TRACE] [um/um]: Sending event FMLModIdMappingEvent to mod um
[09:50:39] [server thread/TRACE] [um/um]: Sent event FMLModIdMappingEvent to mod um
[09:50:39] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Unstable Metallurgy took 0.003s
[09:50:39] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.006s
[09:50:39] [server thread/INFO] [FML/]: Applying holder lookups
[09:50:39] [server thread/INFO] [FML/]: Holder lookups applied
[09:50:39] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world
[09:50:39] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[09:50:39] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[09:50:39] [server thread/INFO] [FML/]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@5a43e0e5)
[09:50:40] [server thread/INFO] [FML/]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@5a43e0e5)
[09:50:40] [server thread/INFO] [FML/]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@5a43e0e5)
[09:51:11] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp
[09:51:11] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0.001s
[09:51:11] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML
[09:51:11] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0.001s
[09:51:11] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge
[09:51:11] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0.012s
[09:51:11] [server thread/TRACE] [um/um]: Sending event FMLServerStartingEvent to mod um
[09:51:11] [server thread/TRACE] [um/um]: Sent event FMLServerStartingEvent to mod um
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Unstable Metallurgy took 0.001s
[09:51:11] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0.016s
[09:51:11] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp
[09:51:11] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0.001s
[09:51:11] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML
[09:51:11] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0.002s
[09:51:11] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge
[09:51:11] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0.001s
[09:51:11] [server thread/TRACE] [um/um]: Sending event FMLServerStartedEvent to mod um
[09:51:11] [server thread/TRACE] [um/um]: Sent event FMLServerStartedEvent to mod um
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Unstable Metallurgy took 0.002s
[09:51:11] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0.006s
[09:51:14] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating
[09:51:14] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START
[09:51:14] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: HELLO
[09:51:14] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating
[09:51:14] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO
[09:51:15] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO
[09:51:15] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: WAITINGSERVERDATA
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO
[09:51:15] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: PENDINGCOMPLETE
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: WAITINGCACK
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: COMPLETE
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: COMPLETE
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: DONE
[09:51:15] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[09:51:15] [server thread/INFO] [FML/]: [server thread] Server side modded connection established
[09:51:15] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
[09:51:33] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:52:13] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:52:58] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:53:43] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:54:28] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:55:15] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:56:00] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:56:49] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:57:37] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:58:22] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:58:36] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp
[09:58:36] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp
[09:58:36] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Coder Pack took 0.001s
[09:58:36] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML
[09:58:36] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML
[09:58:36] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Forge Mod Loader took 0.001s
[09:58:36] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge
[09:58:36] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge
[09:58:36] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Forge took 0.001s
[09:58:36] [server thread/TRACE] [um/um]: Sending event FMLServerStoppingEvent to mod um
[09:58:36] [server thread/TRACE] [um/um]: Sent event FMLServerStoppingEvent to mod um
[09:58:36] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Unstable Metallurgy took 0.001s
[09:58:36] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopping took 0.003s
[09:58:36] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World

Posted

[FML/]: Exception loading model um:item/unstable_ore with loader instance, skipping
com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Expected name at line 5 column 6

Caused by: com.google.gson.stream.MalformedJsonException: Expected name at line 5 column 6

 

Your JSON is malformed.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

my guess i have to delete it and make a new one?

 

No, just fix the syntax error.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

i did fix it was an extra comma i added but i still get an untextured block

[09:48:54] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[09:48:54] [main/INFO] [FML/]: Forge Mod Loader version 11.15.0.1715 for Minecraft 1.8.9 loading
[09:48:54] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_73, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_73
[09:48:54] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\chase\Desktop\New folder (2)\bin;C:\Users\chase\.gradle\caches\minecraft\net\minecraftforge\forge\1.8.9-11.15.0.1715\stable\20\forgeSrc-1.8.9-11.15.0.1715.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\chase\.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\chase\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.21\aefba0d5b53fbcb70860bc8046ab95d5854c07a5\authlib-1.5.21.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.7.58\eff381295d7ed3091a0aa515aa3009f641c199f1\realms-1.7.58.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\chase\.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\chase\.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\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\chase\.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\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\chase\.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\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\chase\.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\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\206c4ccaecdbcfd2a1631150c69a97bbc9c20c11\twitch-platform-6.5-natives-windows-32.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\9fdd0fd5aed0817063dcf95b69349a171f447ebd\twitch-platform-6.5-natives-windows-64.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\5f9d1ee26257b3a33f0ca06fed335ef462af659f\twitch-platform-6.5-natives-osx.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\chase\.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\chase\.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\chase\.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\chase\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar;C:\Users\chase\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\chase\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\chase\.gradle\caches\minecraft\net\minecraftforge\forge\1.8.9-11.15.0.1715\start
[09:48:54] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jre1.8.0_73\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Program Files/Java/jre1.8.0_73/bin/server;C:/Program Files/Java/jre1.8.0_73/bin;C:/Program Files/Java/jre1.8.0_73/lib/amd64;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Skype\Phone\;C:\Users\chase\eclipse\jee-mars\eclipse;;.;C:/Users/chase/.gradle/caches/minecraft/net/minecraft/natives/1.8.9
[09:48:54] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[09:48:54] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[09:48:54] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[09:48:54] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[09:48:54] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[09:48:54] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[09:48:54] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[09:48:54] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\chase\Desktop\New folder (2)\run\.
[09:48:54] [main/DEBUG] [FML/]: Discovering coremods
[09:48:54] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[09:48:54] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[09:48:54] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[09:48:54] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[09:48:54] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[09:48:54] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[09:48:54] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[09:48:54] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[09:48:54] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[09:48:54] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
[09:48:54] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[09:48:55] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[09:48:55] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[09:48:55] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[09:48:55] [main/DEBUG] [FML/]: Injection complete
[09:48:55] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
[09:48:55] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[09:48:55] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[09:48:56] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\chase\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_stable\20\srgs\srg-mcp.srg with 27884 records
[09:49:01] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[09:49:01] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[09:49:01] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[09:49:01] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
[09:49:01] [main/DEBUG] [FML/]: Injection complete
[09:49:01] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
[09:49:01] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[09:49:01] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[09:49:01] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[09:49:01] [main/DEBUG] [FML/]: Loaded 162 rules from AccessTransformer config file forge_at.cfg
[09:49:01] [main/DEBUG] [FML/]: Validating minecraft
[09:49:05] [main/DEBUG] [FML/]: Minecraft validated, launching...
[09:49:05] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[09:49:05] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[09:49:05] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[09:49:05] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[09:49:29] [Client thread/WARN] [FML/]: =============================================================
[09:49:29] [Client thread/WARN] [FML/]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!
[09:49:29] [Client thread/WARN] [FML/]: Offendor: com/sun/jna/Native.main([Ljava/lang/String;)V
[09:49:29] [Client thread/WARN] [FML/]: Use FMLCommonHandler.exitJava instead
[09:49:29] [Client thread/WARN] [FML/]: =============================================================
[09:49:30] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.032s
[09:49:31] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ----
// My bad.

Time: 2/23/16 9:49 AM
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.8.9
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_73, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 757383536 bytes (722 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: 'ATI Technologies Inc.' Version: '4.5.13397 Compatibility Profile Context 15.200.1055.0' Renderer: 'AMD Radeon HD 8330'
[09:49:31] [Client thread/INFO] [FML/]: MinecraftForge v11.15.0.1715 Initialized
[09:49:31] [Client thread/INFO] [FML/]: Replaced 204 ore recipies
[09:49:32] [Client thread/DEBUG] [FML/]: File C:\Users\chase\Desktop\New folder (2)\run\config\injectedDependencies.json not found. No dependencies injected
[09:49:32] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[09:49:33] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\chase\Desktop\New folder (2)\bin, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\minecraft\net\minecraftforge\forge\1.8.9-11.15.0.1715\stable\20\forgeSrc-1.8.9-11.15.0.1715.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\3.4.0\803ff252fedbd395baffd43b37341dc4a150a554\jna-3.4.0.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar, examining for mod candidates
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.23.Final\294104aaf1781d6a56a07d561e792c5d0c95f45\netty-all-4.0.23.Final.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.21\aefba0d5b53fbcb70860bc8046ab95d5854c07a5\authlib-1.5.21.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.7.58\eff381295d7ed3091a0aa515aa3009f641c199f1\realms-1.7.58.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\206c4ccaecdbcfd2a1631150c69a97bbc9c20c11\twitch-platform-6.5-natives-windows-32.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\9fdd0fd5aed0817063dcf95b69349a171f447ebd\twitch-platform-6.5-natives-windows-64.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\5f9d1ee26257b3a33f0ca06fed335ef462af659f\twitch-platform-6.5-natives-osx.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar, examining for mod candidates
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\chase\.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
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\chase\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\chase\.gradle\caches\minecraft\net\minecraftforge\forge\1.8.9-11.15.0.1715\start, examining for mod candidates
[09:49:33] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[09:49:33] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[09:49:33] [Client thread/INFO] [FML/]: Searching C:\Users\chase\Desktop\New folder (2)\run\mods for mods
[09:49:33] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods
[09:49:33] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.blockstates
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.lang
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.models
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.models.block
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.models.item
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.textures
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.textures.blocks
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package assets.um.textures.items
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package sl3nd3rpanda
[09:49:33] [Client thread/TRACE] [FML/]: Recursing into package sl3nd3rpanda.mod
[09:49:33] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (sl3nd3rpanda.mod.Main) - loading
[09:49:33] [Client thread/TRACE] [um/]: Parsed dependency info : [FML] [FML] []
[09:49:33] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.8.9-11.15.0.1715.jar for potential mods
[09:49:33] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.8.9-11.15.0.1715.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file oshi-core-1.1.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container oshi-core-1.1.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file jna-3.4.0.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container jna-3.4.0.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file platform-3.4.0.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container platform-3.4.0.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file jline-2.13.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container jline-2.13.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
[09:49:37] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods
[09:49:37] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file
[09:49:38] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods
[09:49:38] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file
[09:49:38] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
[09:49:38] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[09:49:38] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
[09:49:38] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[09:49:38] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
[09:49:38] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
[09:49:38] [Client thread/TRACE] [FML/]: Recursing into package net
[09:49:38] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
[09:49:38] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
[09:49:38] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
[09:49:38] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
[09:49:38] [Client thread/TRACE] [FML/]: Received a system property request ''
[09:49:38] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
[09:49:38] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
[09:49:38] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8.9-11.15.0.1715.jar [en_US, en_US]
[09:49:38] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8.9-11.15.0.1715.jar [en_US, en_US]
[09:49:38] [Client thread/DEBUG] [um/]: Enabling mod um
[09:49:38] [Client thread/DEBUG] [FML/]: Injecting found translation assets for lang en_US at assets/um/lang/en_US.lang into language system
[09:49:38] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
[09:49:38] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
[09:49:38] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
[09:49:38] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
[09:49:38] [Client thread/DEBUG] [FML/]: Mod sorting data
[09:49:38] [Client thread/DEBUG] [FML/]: 	um(Unstable Metallurgy:1.0): bin (required-after:FML)
[09:49:38] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[09:49:38] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[09:49:38] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.008s
[09:49:38] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[09:49:39] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[09:49:39] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[09:49:39] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[09:49:39] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, um] at CLIENT
[09:49:39] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, um] at SERVER
[09:49:41] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[09:49:41] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 3.114s
[09:49:41] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
[09:49:41] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
[09:49:41] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
[09:49:41] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (11.15.0.1715)
[09:49:41] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
[09:49:41] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.120s
[09:49:41] [Client thread/TRACE] [um/um]: Sending event FMLConstructionEvent to mod um
[09:49:41] [Client thread/TRACE] [FML/um]: Mod um is using network checker : Accepting version 1.0
[09:49:41] [Client thread/TRACE] [FML/um]: Testing mod um to verify it accepts its own version in a remote connection
[09:49:41] [Client thread/TRACE] [FML/um]: The mod um accepts its own version (1.0)
[09:49:42] [Client thread/DEBUG] [FML/um]: Attempting to inject @SidedProxy classes into um
[09:49:42] [Client thread/TRACE] [um/um]: Sent event FMLConstructionEvent to mod um
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Unstable Metallurgy took 0.269s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 3.511s
[09:49:42] [Client thread/DEBUG] [FML/]: Mod signature data
[09:49:42] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
[09:49:42] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
[09:49:42] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.18)	minecraft.jar
[09:49:42] [Client thread/DEBUG] [FML/]: 		FML	(Forge Mod Loader	8.0.99.99)	forgeSrc-1.8.9-11.15.0.1715.jar
[09:49:42] [Client thread/DEBUG] [FML/]: 		Forge	(Minecraft Forge	11.15.0.1715)	forgeSrc-1.8.9-11.15.0.1715.jar
[09:49:42] [Client thread/DEBUG] [FML/]: 		um	(Unstable Metallurgy	1.0)	bin
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.085s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.144s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.103s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Unstable Metallurgy took 0.031s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.219s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.226s
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.590s
[09:49:42] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[09:49:42] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[09:49:42] [Client thread/DEBUG] [unstable Metallurgy/]: Mod Unstable Metallurgy is missing a pack.mcmeta file, substituting a dummy one
[09:49:42] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
[09:49:42] [Client thread/INFO] [FML/]: Found 384 ObjectHolder annotations
[09:49:42] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
[09:49:42] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
[09:49:42] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[09:49:42] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[09:49:42] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.004s
[09:49:42] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[09:49:43] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[09:49:43] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.101s
[09:49:43] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
[09:49:43] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
[09:49:43] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
[09:49:43] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.163s
[09:49:43] [Client thread/TRACE] [um/um]: Sending event FMLPreInitializationEvent to mod um
[09:49:43] [Client thread/TRACE] [um/um]: Sent event FMLPreInitializationEvent to mod um
[09:49:43] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Unstable Metallurgy took 0.006s
[09:49:43] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0.273s
[09:49:43] [Client thread/INFO] [FML/]: Applying holder lookups
[09:49:43] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[09:49:43] [Client thread/INFO] [FML/]: Holder lookups applied
[09:49:43] [Client thread/INFO] [FML/]: Injecting itemstacks
[09:49:43] [Client thread/INFO] [FML/]: Itemstack injection complete
[09:49:43] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.001s
[09:49:43] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:
{
  "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
  "promos": {
    "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.1761",
    "1.8.9-recommended": "11.15.1.1722",
    "latest": "11.15.1.1761",
    "latest-1.7.10": "10.13.2.1343",
    "recommended": "11.15.1.1722"
  }
}
[09:49:43] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: OUTDATED Target: 11.15.1.1722
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 5.371s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.016s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.017s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.028s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.040s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.001s
[09:49:49] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.039s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.001s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.001s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[09:49:50] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[09:49:59] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 7.998s
[09:50:00] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.833s
[09:50:00] [Client thread/INFO] [FML/]: Max texture size: 16384
[09:50:00] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.012s
[09:50:00] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.028s
[09:50:02] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 12.432s
[09:50:02] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 12.745s
[09:50:04] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.012s
[09:50:04] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 1.562s
[09:50:04] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[09:50:04] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[09:50:04] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.987s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 15.334s
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.001s
[09:50:05] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
[09:50:05] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.002s
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.004s
[09:50:05] [Client thread/TRACE] [um/um]: Sending event FMLInitializationEvent to mod um
[09:50:05] [Client thread/TRACE] [um/um]: Sent event FMLInitializationEvent to mod um
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Unstable Metallurgy took 0.045s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.051s
[09:50:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.013s
[09:50:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
[09:50:05] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
[09:50:05] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.003s
[09:50:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.002s
[09:50:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod um
[09:50:05] [Client thread/TRACE] [um/um]: Sending event IMCEvent to mod um
[09:50:05] [Client thread/TRACE] [um/um]: Sent event IMCEvent to mod um
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Unstable Metallurgy took 0.002s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.021s
[09:50:05] [Client thread/INFO] [FML/]: Injecting itemstacks
[09:50:05] [Client thread/INFO] [FML/]: Itemstack injection complete
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.002s
[09:50:05] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
[09:50:05] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.002s
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.375s
[09:50:05] [Client thread/TRACE] [um/um]: Sending event FMLPostInitializationEvent to mod um
[09:50:05] [Client thread/TRACE] [um/um]: Sent event FMLPostInitializationEvent to mod um
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Unstable Metallurgy took 0.001s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.380s
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
[09:50:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.001s
[09:50:05] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
[09:50:05] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.002s
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
[09:50:05] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   14: RecipeEntry("Before", UNKNOWN, )
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   13: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   12: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[09:50:05] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
[09:50:05] [Client thread/DEBUG] [FML/Forge]: Sorting recipies
[09:50:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.034s
[09:50:05] [Client thread/TRACE] [um/um]: Sending event FMLLoadCompleteEvent to mod um
[09:50:05] [Client thread/TRACE] [um/um]: Sent event FMLLoadCompleteEvent to mod um
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Unstable Metallurgy took 0.001s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.038s
[09:50:05] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
[09:50:05] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.001s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.045s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.043s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Unstable Metallurgy took 0.003s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.015s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.001s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.010s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.015s
[09:50:05] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.041s
[09:50:16] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3.832s
[09:50:17] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.273s
[09:50:17] [Client thread/INFO] [FML/]: Max texture size: 16384
[09:50:18] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 1.311s
[09:50:18] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0.502s
[09:50:19] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.104s
[09:50:19] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.690s
[09:50:21] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 15.534s
[09:50:21] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 15.537s
[09:50:21] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 15.629s
[09:50:21] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[09:50:21] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[09:50:21] [Client thread/DEBUG] [unstable Metallurgy/]: Mod Unstable Metallurgy is missing a pack.mcmeta file, substituting a dummy one
[09:50:21] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 49.391s
[09:50:36] [Client thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:50:38] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp
[09:50:38] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp
[09:50:38] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0.002s
[09:50:38] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML
[09:50:38] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML
[09:50:38] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0.002s
[09:50:38] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge
[09:50:38] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge
[09:50:38] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0.001s
[09:50:38] [server thread/TRACE] [um/um]: Sending event FMLServerAboutToStartEvent to mod um
[09:50:38] [server thread/TRACE] [um/um]: Sent event FMLServerAboutToStartEvent to mod um
[09:50:38] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Unstable Metallurgy took 0.002s
[09:50:38] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0.006s
[09:50:39] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:50:39] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance
[09:50:39] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[09:50:39] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[09:50:39] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.001s
[09:50:39] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[09:50:39] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[09:50:39] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.001s
[09:50:39] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[09:50:39] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[09:50:39] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.002s
[09:50:39] [server thread/TRACE] [um/um]: Sending event FMLModIdMappingEvent to mod um
[09:50:39] [server thread/TRACE] [um/um]: Sent event FMLModIdMappingEvent to mod um
[09:50:39] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Unstable Metallurgy took 0.003s
[09:50:39] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.006s
[09:50:39] [server thread/INFO] [FML/]: Applying holder lookups
[09:50:39] [server thread/INFO] [FML/]: Holder lookups applied
[09:50:39] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world
[09:50:39] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[09:50:39] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[09:50:39] [server thread/INFO] [FML/]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@5a43e0e5)
[09:50:40] [server thread/INFO] [FML/]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@5a43e0e5)
[09:50:40] [server thread/INFO] [FML/]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@5a43e0e5)
[09:51:11] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp
[09:51:11] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0.001s
[09:51:11] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML
[09:51:11] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0.001s
[09:51:11] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge
[09:51:11] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0.012s
[09:51:11] [server thread/TRACE] [um/um]: Sending event FMLServerStartingEvent to mod um
[09:51:11] [server thread/TRACE] [um/um]: Sent event FMLServerStartingEvent to mod um
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Unstable Metallurgy took 0.001s
[09:51:11] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0.016s
[09:51:11] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp
[09:51:11] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0.001s
[09:51:11] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML
[09:51:11] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0.002s
[09:51:11] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge
[09:51:11] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0.001s
[09:51:11] [server thread/TRACE] [um/um]: Sending event FMLServerStartedEvent to mod um
[09:51:11] [server thread/TRACE] [um/um]: Sent event FMLServerStartedEvent to mod um
[09:51:11] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Unstable Metallurgy took 0.002s
[09:51:11] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0.006s
[09:51:14] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating
[09:51:14] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START
[09:51:14] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: HELLO
[09:51:14] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating
[09:51:14] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO
[09:51:15] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO
[09:51:15] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: WAITINGSERVERDATA
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO
[09:51:15] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: PENDINGCOMPLETE
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: WAITINGCACK
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: COMPLETE
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: COMPLETE
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
[09:51:15] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: DONE
[09:51:15] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE
[09:51:15] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[09:51:15] [server thread/INFO] [FML/]: [server thread] Server side modded connection established
[09:51:15] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
[09:51:33] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:52:13] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:52:58] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:53:43] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:54:28] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:55:15] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:56:00] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:56:49] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:57:37] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:58:22] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[09:58:36] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppingEvent to mod mcp
[09:58:36] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppingEvent to mod mcp
[09:58:36] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Coder Pack took 0.001s
[09:58:36] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppingEvent to mod FML
[09:58:36] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppingEvent to mod FML
[09:58:36] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Forge Mod Loader took 0.001s
[09:58:36] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppingEvent to mod Forge
[09:58:36] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppingEvent to mod Forge
[09:58:36] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Minecraft Forge took 0.001s
[09:58:36] [server thread/TRACE] [um/um]: Sending event FMLServerStoppingEvent to mod um
[09:58:36] [server thread/TRACE] [um/um]: Sent event FMLServerStoppingEvent to mod um
[09:58:36] [server thread/DEBUG] [FML/]: Bar Step: ServerStopping - Unstable Metallurgy took 0.001s
[09:58:36] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopping took 0.003s
[09:58:36] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World

i did fix the syntax error but i still get an untextured block

Posted

i did fix the syntax error but i still get an untextured block

 

Then I'm not too sure what's going on. The log should report any missing/invalid textures or models, but I can't see any errors in it.

 

Could you upload your code to a site like GitHub/BitBucket and link it here? Create the Git repository in your mod's root directory (where build.gradle and src are) and use a gitignore file like this one (the first two lines ignore everything, the rest unignore the files we actually want in the repository).

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Working $200 Off  TℰℳU  Coupon Code [acu639380] First Order Exclusive  TℰℳU  Coupon Code (acu639380) – Save Big on Your Shopping! TℰℳU  has become a go-to online marketplace for shoppers looking for high-quality products at unbeatable prices. With millions of trending items, fast delivery, and free shipping available in 67 countries,  TℰℳU  ensures a seamless shopping experience for its users. Now, you can make your purchases even more rewarding by using the  TℰℳU  coupon code (acu639380) to unlock huge discounts of up to $200 and exclusive deals. Why Use the  TℰℳU  Coupon Code (acu639380)? By applying the  TℰℳU  discount code (acu639380) at checkout, you can enjoy massive savings of up to $200 on a wide range of categories, including electronics, fashion, home essentials, beauty products, and more. This special offer is available to both new and existing users, ensuring that everyone gets a chance to save big on their favorite items What Discounts Can You Get with  TℰℳU  Coupon Code (acu639380)? Here’s what you can unlock with the  TℰℳU  promo code (acu639380): $200 Off for New Users – First-time shoppers can enjoy a flat $200 discount on their initial order. $200 Off for Existing Users – Loyal customers can also claim $200 off their purchases with the same code. Extra 40% Off – The  TℰℳU  discount code (acu639380) provides an additional 40% off on select items, maximizing your savings. $200 Coupon Bundle – Both new and existing users can receive a $200 coupon bundle, perfect for future purchases. Free Gifts for New Users – If you’re shopping on  TℰℳU  for the first time, you July receive free gifts with your order.  TℰℳU  Coupons for Different Countries  TℰℳU  caters to shoppers worldwide, offering incredible discounts based on your location. Here’s how the  TℰℳU  coupon code (acu639380) benefits users across different regions: United States – Get $200 off your first order using the  TℰℳU  coupon code (acu639380). Canada – Enjoy $200 off on your first-time purchase. United Kingdom – Use the  TℰℳU  promo code (acu639380) to get $200 off your first order. Japan – Japanese shoppers can claim $200 off their initial purchase. Mexico – Get an extra 40% discount on select products with the  TℰℳU  coupon (acu639380). Brazil – Shoppers in Brazil can also save 40% on select items. Germany – Receive a 40% discount on eligible products with the  TℰℳU  promo code (acu639380). How to Use the  TℰℳU  Coupon Code (acu639380)? Applying the  TℰℳU  discount code (acu639380) is simple and hassle-free. Follow these easy steps to redeem your discount: Sign Up or Log In – Create a new account or log in to your existing  TℰℳU  account. Shop for Your Favorite Items – Browse through  TℰℳU ’s vast collection and add products to your cart. Enter the Coupon Code – At checkout, apply the  TℰℳU  promo code (acu639380) in the designated field. Enjoy Your Discount – See the discount applied to your order and proceed with payment. Why Shop on  TℰℳU ? Apart from huge discounts,  TℰℳU  offers several benefits that make shopping more exciting and budget-friendly: Up to 90% Off on Select Products –  TℰℳU  regularly offers massive discounts on top-selling items. Fast & Free Shipping – Get your products delivered quickly with free shipping to 67 countries. Wide Product Selection – Shop from a vast range of categories, including electronics, fashion, home essentials, and more. Safe & Secure Payments –  TℰℳU  ensures a secure checkout process for a smooth shopping experience. Exclusive App Deals – Download the  TℰℳU  app for extra discounts and app-only promotions. Final Thoughts With  TℰℳU ’s exclusive coupon code (acu639380), you can unlock huge savings and enjoy a premium shopping experience at an affordable price. Whether you are a new user looking for a $200 discount or an existing customer wanting an extra 40% off,  TℰℳU  has something for everyone. Don't forget to claim your $200 coupon bundle and free gifts before these amazing deals expire! Start shopping today on  TℰℳU  and use the  TℰℳU  coupon code (acu639380) to maximize your savings!  
    • Looking for a way to maximize your savings this July? The ⊤emu coupon code (acu639380) is your ultimate key to unlocking exceptional discounts, whether you’re a first-time shopper or a loyal customer. With the ⊤emu coupon $100 off first order (acu639380) and the ⊤emu coupon code 40% off offer, you can enjoy unbeatable deals, free gifts, and more. ⊤emu, a global shopping platform, is celebrated for its vast selection of trending items, budget-friendly prices, and user-friendly services like fast delivery and free shipping across 67 countries. This July 2025, don’t miss out on their exciting new user offers, exclusive promo codes, and lucrative bundles designed to enhance your shopping experience. Why Choose ⊤emu for Your Shopping? ⊤emu stands out as one of the most customer-centric platforms in the e-commerce industry. Here are some key reasons why shoppers worldwide trust ⊤emu: Wide Variety of Products: From fashion to gadgets and home decor, ⊤emu offers something for everyone. Incredible Discounts: Enjoy up to 90% off on selected items. Convenient Services: With free shipping available in 67 countries, ⊤emu ensures a seamless shopping experience. Exclusive Coupons: Take advantage of the ⊤emu coupon code (acu639380) $100 off and other offers to save more. Latest ⊤emu Coupons and Promo Codes for July 2025 This July, ⊤emu’s promotional offers are better than ever. Let’s dive into the specific deals and how you can benefit: ⊤emu Coupon $100 Off First Order (acu639380) Details: Perfect for first-time users, this coupon provides a flat $100 discount on your first order. Highlight: Use the ⊤emu coupon code (acu639380) to enjoy savings instantly. How to Redeem: Enter the code during checkout after signing up for a new account. ⊤emu Coupon Code 40% Off (acu639380) Details: Get an additional 40% off on select items, applicable for both new and existing users. Highlight: Combine this with other discounts for maximum benefits. ⊤emu $100 Coupon Bundle Details: A fantastic bundle offering multiple coupons worth $100 in total, suitable for both new and existing customers. Highlight: Enjoy discounts across multiple purchases. Free Gift for New Users Details: First-time users can claim a complimentary gift along with their first order. Highlight: Use the ⊤emu first-time user coupon to unlock this bonus. Extra Discounts for Existing Users Details: Existing customers can leverage the ⊤emu coupon code (acu639380) 40% off to enjoy added savings on their purchases. How to Use ⊤emu Coupon Codes in July 2025 Redeeming a ⊤emu coupon is quick and straightforward. Follow these steps to ensure you make the most of your savings: Visit the ⊤emu website or app. Log in or create a new account. Browse the catalog and add your desired items to the cart. Apply the relevant coupon code—acu639380—at checkout. Verify the discount and proceed with payment. Benefits of Using ⊤emu Coupon Codes (acu639380) Using the ⊤emu coupon code (acu639380) brings numerous advantages, such as: Flat $100 off for first-time users. 40% off for selected items, accessible to all users. A $100 coupon bundle for multiple transactions. Free gifts for new customers. Free shipping across 67 countries. Country-Specific Deals: ⊤emu Coupons for July 2025 Take advantage of these offers tailored for different regions: USA: ⊤emu coupon code $100 off (acu639380) for first orders. Canada: ⊤emu discount code (acu639380) offering 40% off. UK: ⊤emu coupon code $100 off for new users. Mexico: ⊤emu promo code (acu639380) 40% off for selected items. Brazil: ⊤emu first-time user coupon with a $100 discount. Japan: ⊤emu $100 coupon bundle for new and existing customers. How to Find ⊤emu Coupons in July 2025 Finding the latest ⊤emu promo codes and discounts has never been easier. Here’s how: Newsletter Subscription: Sign up for ⊤emu’s email updates to receive verified and exclusive coupons. Social Media: Follow ⊤emu’s official accounts for the latest deals and promo codes. Coupon Websites: Visit trusted platforms to access reliable codes like acu639380. Community Forums: Check out discussions on forums like Reddit for shared codes and user tips. Tips for Maximizing Your Savings on ⊤emu Combine Discounts: Use the ⊤emu coupon code (acu639380) $100 off with other offers for higher savings. Shop During Sales: Look out for seasonal sales to grab the best deals. Refer Friends: Participate in ⊤emu’s referral program to earn additional coupons. Use Bundles: The $100 coupon bundle ensures discounts over multiple orders. Final Thoughts July 2025 is the perfect time to shop smart on ⊤emu. By using the ⊤emu coupon $100 off first order (acu639380) and the ⊤emu coupon code 40% off, you can enjoy incredible savings and make the most of your shopping experience. Whether you’re a new or existing user, these exclusive codes are designed to maximize your benefits. Don’t miss out—start saving today! FAQs Can I use the ⊤emu coupon code (acu639380) multiple times? Yes, some offers, like the $100 coupon bundle, can be used across multiple transactions. Is the $100 off coupon valid worldwide? The coupon is valid in 67 countries, including the USA, Canada, and Europe. How do I get free shipping on ⊤emu? Free shipping is available for all users in eligible countries without a minimum purchase requirement. Can existing users avail of the $100 off coupon? Yes, the ⊤emu coupon code (acu639380) $100 off is valid for both new and existing users. What is the validity of the ⊤emu promo codes? These codes are active for July 2025, with no expiration for the acu639380 code.
    • ⊤emu has revolutionized online shopping with its unbeatable prices, free shipping to 67 countries, and exclusive discounts like the ⊤emu $100 Off Coupon Code [acu639380]. Whether you’re a first-time user or a loyal customer, this code unlocks incredible savings on trending items—from fashion and electronics to home essentials. Let’s dive into how to maximize your ⊤emu experience with this game-changing offer. Why ⊤emu Stands Out ⊤emu isn’t just another online marketplace—it’s a treasure trove of affordable, high-quality products. With a vast inventory spanning fashion, electronics, home décor, beauty, and more, you’ll find everything you need (and want!) at prices that feel like a steal. But what truly sets ⊤emu apart? Fast Delivery: Orders arrive quickly, no matter where you are. Free Shipping: Enjoy zero delivery fees in 67+ countries. Up to 90% Off: Regular discounts and seasonal sales make shopping guilt-free. Verified Coupon Codes: Codes like [acu639380] add an extra layer of savings. ⊤emu Coupon Codes: Unlocking Savings ⊤emu offers multiple coupon codes to help you save big. Here’s a breakdown of the most popular ones: - acu639380: ⊤emu $100 Off Coupon Code [acu639380] for new and existing users. - acu639380 : Additional discounts on select items. - acu639380 : Special offers on trending products. - acu639380 : Exclusive seasonal promotions. - acu639380 : Bonus savings for frequent shoppers. Each code targets different needs, ensuring you never miss out on a deal. How to Use the ⊤emu $100 Off Coupon Code [acu639380] Applying the ⊤emu $100 Off Coupon Code [acu639380] is simple: Visit ⊤emu: Head to the app or website. Add Items: Browse and add products to your cart. Checkout: Enter [acu639380] in the coupon field. Save: Watch your total drop by $100 instantly. This code works for first-time users, offering a flat $100 discount on your inaugural order. Existing users can also use it to stack savings with ongoing promotions. Benefits of the ⊤emu $100 Off Coupon Code [acu639380] So, why should you use this code? Here’s what you gain: Massive Savings: $100 off on your first order or existing purchases. Free Shipping: No extra delivery fees in 67+ countries. Wide Selection: Apply the code to electronics, fashion, home goods, and more. Legitimacy: Verified by thousands of users—⊤emu $100 Off Coupon Code [acu639380] is legit. No Minimum Spend: Save big without meeting purchase thresholds. Latest ⊤emu Coupon Code $100 Off [acu639380] + Get 30% Discount ⊤emu often pairs its $100 Off Coupon Code [acu639380] with other perks. For example, first-time users might snag 30% off on select items or receive free gifts. These bundles amplify savings, letting you enjoy up to 70% off on trending products. Is the ⊤emu $100 Off Coupon Code [acu639380] Legit? Absolutely! ⊤emu $100 Off Coupon Code [acu639380] is legit, with thousands of users successfully redeeming it. The code works seamlessly, and ⊤emu’s reputation for fast shipping and quality products ensures a smooth experience. What Is the ⊤emu $100 Off Coupon Code [acu639380]? The ⊤emu $100 Off Coupon Code [acu639380] is a promotional code designed to reward users with $100 off on purchases. It’s available for new and existing users, making it a versatile tool for anyone shopping on ⊤emu. How Does the $100 Off Coupon Code [acu639380] Work on ⊤emu? The code applies automatically at checkout. Simply enter [acu639380], and ⊤emu deducts $100 from your total. It’s a straightforward way to save big without hassle. ⊤emu $100 Off Coupon Code [acu639380] Free Shipping Pair the ⊤emu $100 Off Coupon Code [acu639380] with ⊤emu’s free shipping policy for maximum savings. Orders ship globally without extra fees, ensuring your discounted items arrive quickly and affordably. Summary ⊤emu Coupon Code $100 Off [acu639380] ⊤emu $100 Off Coupon Code [acu639380] legit What is the ⊤emu $100 Off Coupon Code [acu639380]? Latest ⊤emu Coupon Code $100 Off [acu639380] + Get 30% Discount $100 Off Coupon Code [acu639380] on ⊤emu What is a $100 Off Coupon Code [acu639380] on ⊤emu? How does the $100 Off Coupon Code [acu639380] work on ⊤emu? $100 Off dollar Coupon Code [acu639380] ⊤emu ⊤emu $100 Off Coupon Code [acu639380] free shipping What's the $100 Off Coupon Code [acu639380] on ⊤emu? Final Note: Use The Latest ⊤emu Coupon Code $100 Off ⊤emu coupon code |(ACU639380)| $100 off is a golden opportunity to save big on your first order. Whether you’re shopping for essentials or splurging on a trend, this code ensures you get the best value. ⊤emu coupon $100 off isn’t just a discount—it’s a gateway to discovering ⊤emu’s unbeatable prices and fast delivery. With codes like [acu639380], you’ll never miss out on a deal. FAQs: Of ⊤emu $100 Off Coupon What is the ⊤emu $100 Off Coupon Code [acu639380]? A promotional code offering $100 off for new and existing users. Is the ⊤emu $100 Off Coupon Code [acu639380] legit? Yes! Verified by users and ⊤emu’s trusted platform. How does the ⊤emu $100 Off Coupon Code [acu639380] work? Enter [acu639380] at checkout to apply the discount instantly. Can I combine the ⊤emu $100 Off Coupon Code [acu639380] with other offers? Yes, stack it with seasonal sales or free shipping for bigger savings. Does the ⊤emu $100 Off Coupon Code [acu639380] expire? Codes are updated regularly—use them as soon as possible. ⊤emu $100 Off Coupon Code [acu639380] is your ticket to unlocking incredible deals. Start shopping today and enjoy the thrill of saving big!
    • How To Get ⊤emu Coupon Code 90% + $100 Off {[ACU639380]} First Order ⊤emu has become a game-changer for savvy shoppers worldwide, offering unbeatable prices, trending items, and fast delivery to over 67 countries. If you want to maximize your savings with ⊤emu, you're in the right place. By using the exclusive ⊤emu Coupon code {[ACU639380]}, you can unlock Coupons of up to 90% on your first order, and that’s just the beginning! Here's a detailed guide to help you claim the best deals, including codes like ⊤emu Coupon code {[ACU639380]} $100 off, ⊤emu Coupon code {[ACU639380]} 40% off, and more. Let’s dive in! What Makes ⊤emu the Perfect Shopping Destination? ⊤emu’s appeal lies in its massive product catalog, which features everything from electronics and fashion to home essentials and beauty products. With free shipping to 67 countries and prices slashed by up to 90%, it’s no wonder that shoppers worldwide are flocking to ⊤emu. Here are some standout benefits: Unbeatable Prices: ⊤emu’s Coupons often rival holiday sales, making it easy to save big year-round. Exclusive Coupon Codes: With offers like ⊤emu Coupon code {[ACU639380]} $100 off and ⊤emu Coupon code {[ACU639380]} 90% off, you can get even better deals. Fast Delivery: Despite its affordability, ⊤emu delivers quickly and reliably. Wide Availability: Whether you’re in North America, South America, or Europe, ⊤emu ships to 67 countries for free. Trending Products: ⊤emu regularly updates its inventory with the latest in fashion, gadgets, and home essentials, ensuring you always find something new and exciting. Eco-Friendly Options: ⊤emu has begun incorporating sustainable products into its catalog, making it a favorite for environmentally conscious shoppers. How to Get ⊤emu Coupon Code 90% Off  {[ACU639380]}  First Order 2025 To unlock ⊤emu’s best deals, including the 90% off Coupon for your first order, follow these simple steps: Sign Up on ⊤emu: Create a new account to qualify for the ⊤emu first-time user Coupon. Apply the ⊤emu Coupon Code {[ACU639380]} During checkout, enter the code{[ACU639380]} to enjoy Coupons like $100 off, 90% off, or a $100 Coupon bundle. Explore New Offers: Stay updated on ⊤emu’s promotions, such as the ⊤emu promo code {[ACU639380]} for July 2025, to maximize your savings. Shop During Sales Events: Take advantage of seasonal sales or special promotions to amplify your savings. Benefits of Using ⊤emu Coupon Codes Using ⊤emu’s exclusive Coupon codes comes with several perks: Flat $100 Coupon: Perfect for first-time shoppers and existing users alike. Extra 40% Off: Stackable on already Couponed items. $100 Coupon Bundle: Ideal for bulk shoppers, available for both new and existing users. Free Gifts: Available for new users upon sign-up and first purchase. Up to 90% Off: Combine these codes with ongoing sales for maximum savings. Exclusive Deals for App Users: Additional Coupons and rewards for shopping via the ⊤emu app. Referral Bonuses: Earn extra Coupons by inviting friends to join ⊤emu. Exclusive Coupon Codes and How to Use Them Here’s a breakdown of the best ⊤emu Coupon codes available: ⊤emu Coupon code {[ACU639380]}Unlock $100 off your order. ⊤emu Coupon code {[ACU639380]} $100 off: Ideal for new users looking to save big. ⊤emu Coupon code {[ACU639380]} 90% off: Great for scoring additional savings on trending items. ⊤emu $100 Coupon bundle: Available for both new and existing users. ⊤emu Coupons for new users: Includes free gifts and exclusive Coupons. ⊤emu Coupons for existing users: Stay loyal and save with ongoing deals. ⊤emu promo code {[ACU639380]}Your go-to code for July 2025. ⊤emu Coupon code: Available throughout the year for unbeatable savings. Limited-Time Offers: Watch out for flash sales where these Coupons can yield even greater Coupons. Country-Specific Coupon Benefits USA: ⊤emu Coupon code {[ACU639380]} $100 off for first-time users. Canada: Save big with ⊤emu Coupon code {[ACU639380]} $100 off for both new and existing users. UK: Enjoy 90% off on your favorite items with ⊤emu Coupon code {[ACU639380]}. Japan: Use ⊤emu Coupon code {[ACU639380]} $100 off and get free shipping. Mexico: Extra 90% savings with ⊤emu Coupon code {[ACU639380]}. Brazil: Unlock amazing deals, including a $100 Coupon bundle, with ⊤emu codes. Germany: Access Coupons of up to 90% with ⊤emu Coupon codes. France: Enjoy 40% off luxury items using ⊤emu Coupon code {[ACU639380]}. Australia: Combine the $100 Coupon bundle with local promotions for unmatched savings. India: Take advantage of the ⊤emu Coupon code {[ACU639380]} for special offers on electronics. Tips for Maximizing ⊤emu Offers in July 2025 Combine Coupons with Sales: Pair ⊤emu promo code {[ACU639380]} with seasonal sales for double the savings. Refer Friends: Earn additional Coupons by inviting your friends to shop on ⊤emu. Download the App: ⊤emu often releases app-exclusive offers, including additional Coupons for first-time users. Stay Updated: Check for new ⊤emu Coupon codes for existing users and new offers in July 2025. Utilize Bundles: Make the most of the $100 Coupon bundle to save on bulk purchases. Set Alerts: Sign up for notifications to be the first to know about flash sales and limited-time deals. Frequently Asked Questions Can I use multiple ⊤emu Coupon codes on a single order? Yes, ⊤emu allows stacking of certain Coupons, such as the 90% off code with a $100 Coupon bundle. Do ⊤emu Coupon codes {[ACU639380]} work internationally? Absolutely! These codes are valid across all 67 countries where ⊤emu ships, including North America, South America, and Europe. How often does ⊤emu release new offers? ⊤emu frequently updates its promotions, especially at the start of each month and during major shopping seasons. What makes ⊤emu unique compared to other platforms? In addition to unbeatable prices, ⊤emu stands out for its free shipping, eco-friendly products, and app-exclusive rewards. By following this guide, you can take full advantage of ⊤emu’s incredible offers. Whether you’re a new user or a loyal shopper, ⊤emu Coupon codes like {[ACU639380]} will ensure you get the most bang for your buck. Happy shopping!
  • Topics

×
×
  • Create New...

Important Information

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