Jump to content

Working with custom tools with special abilities


BHGgaming

Recommended Posts

Read aboud Forge Events.

 

Use @SubscribeEvent to setup HarvestDropsEvent.

 

Modify droplist (event.drops) depending on miner's tool (event.harvester).

 

To get the tool you need to access inventory (held item):

event.harvester.inventory.getCurrentItem();

 

Comparing item should be made on Item.class with "==" (items are singletons),e.g:

ItemStack#getItem() == MyMod.mySuperPickaxeInstance

 

Finally, post your code (what you tried) to get more help/tips.

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

So i understand is, but i am unable to pull the block being mined from the event.

 

here is my code for the Event Handler:

 

package com.biohazard.gems;

 

import com.biohazard.gems.items.GemItems;

 

import net.minecraft.block.Block;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.item.Item;

import net.minecraft.item.ItemStack;

import net.minecraftforge.event.world.BlockEvent;

import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

 

public class GemEventHandler {

 

@SubscribeEvent

public void infusedPick(BlockEvent.HarvestDropsEvent event){

EntityPlayer player = event.harvester;

ItemStack heldItem = player.inventory.getCurrentItem();

 

if(heldItem == null){

return;

}

 

if(heldItem == new ItemStack(GemItems.redPoweredPick)) {

 

                        /*psuedo if block being mined is an ore, remove ore block from event.drops

*add smelted item to event.drops

*/

}

 

}

}

 

 

 

Link to comment
Share on other sites

Every event that is an instance of BlockEvent has a BlockPos which stores the coordinates. BlockEvent also has tha IBlockState. You can get the block from an IBlockState by adding .getBlock().

I might be terribly wrong.. Like really, really wrong. But I'm just trying to help.

Link to comment
Share on other sites

Every event that is an instance of BlockEvent has a BlockPos which stores the coordinates. BlockEvent also has tha IBlockState. You can get the block from an IBlockState by adding .getBlock().

 

i was about to see if i could just get the blocks pos., then see what block was in that pos. Thank you very much

Link to comment
Share on other sites

Comparing item should be made on Item.class with "==" (items are singletons),e.g:

ItemStack#getItem() == MyMod.mySuperPickaxeInstance

 

It is bad practice to make new ItemStack just to compate items.

Only case in which you could justify it would be compating whole Stacks (their NBT and size/damage).

 

Also, in any case, that (what you did) won't work. "==" is instance comparing. Currently held item will be only ever equal to itself. If you want to compare it to other ItemStack instance you need to use .equals (note: idk if ItemStack uses equals xD).

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

okay.. so i have my event in a spoiler below, and when mining stone, it still drops cobblestone, and when mining iron ore, it produces the following crash report

any help is greatly appreiciated

 

 

Crash Report:

 

---- Minecraft Crash Report ----

// On the bright side, I bought you a teddy bear!

 

Time: 12/12/15 4:00 PM

Description: Exception ticking world

 

java.lang.NullPointerException: Exception ticking world

at com.biohazard.gems.GemEventHandler.infusedPick(GemEventHandler.java:18)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_GemEventHandler_infusedPick_HarvestDropsEvent.invoke(.dynamic)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55)

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)

at net.minecraftforge.event.ForgeEventFactory.fireBlockHarvesting(ForgeEventFactory.java:190)

at net.minecraft.block.Block.dropBlockAsItemWithChance(Block.java:611)

at net.minecraft.block.Block.dropBlockAsItem(Block.java:597)

at net.minecraft.block.BlockDoublePlant.checkAndDropBlock(BlockDoublePlant.java:95)

at net.minecraft.block.BlockBush.updateTick(BlockBush.java:57)

at net.minecraft.block.Block.randomTick(Block.java:528)

at net.minecraft.world.WorldServer.updateBlocks(WorldServer.java:467)

at net.minecraft.world.WorldServer.tick(WorldServer.java:228)

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)

at java.lang.Thread.run(Thread.java:745)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at com.biohazard.gems.GemEventHandler.infusedPick(GemEventHandler.java:18)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_GemEventHandler_infusedPick_HarvestDropsEvent.invoke(.dynamic)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55)

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)

at net.minecraftforge.event.ForgeEventFactory.fireBlockHarvesting(ForgeEventFactory.java:190)

at net.minecraft.block.Block.dropBlockAsItemWithChance(Block.java:611)

at net.minecraft.block.Block.dropBlockAsItem(Block.java:597)

at net.minecraft.block.BlockDoublePlant.checkAndDropBlock(BlockDoublePlant.java:95)

at net.minecraft.block.BlockBush.updateTick(BlockBush.java:57)

at net.minecraft.block.Block.randomTick(Block.java:528)

at net.minecraft.world.WorldServer.updateBlocks(WorldServer.java:467)

at net.minecraft.world.WorldServer.tick(WorldServer.java:228)

 

-- Affected level --

Details:

Level name: New World

All players: 1 total; [EntityPlayerMP['Player660'/391, l='New World', x=231.30, y=58.00, z=368.70]]

Chunk stats: ServerChunkCache: 700 Drop: 0

Level seed: -1814084668358052926

Level generator: ID 00 - default, ver 1. Features enabled: true

Level generator options:

Level spawn location: 176.00,64.00,248.00 - World: (176,64,248), Chunk: (at 0,4,8 in 11,15; contains blocks 176,0,240 to 191,255,255), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)

Level time: 67843 game time, 67843 day time

Level dimension: 0

Level storage version: 0x04ABD - Anvil

Level weather: Rain time: 70603 (now: false), thunder time: 10969 (now: false)

Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true

Stacktrace:

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)

at java.lang.Thread.run(Thread.java:745)

 

-- System Details --

Details:

Minecraft Version: 1.8

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.8.0_51, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 449701296 bytes (428 MB) / 1524105216 bytes (1453 MB) up to 3817865216 bytes (3641 MB)

JVM Flags: 0 total;

IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94

FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.4.1563 4 mods loaded, 4 mods active

States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)

UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.4.1563.jar)

UCHIJAAAA Forge{11.14.4.1563} [Minecraft Forge] (forgeSrc-1.8-11.14.4.1563.jar)

UCHIJAAAA hgm{1.0} [Hazardous Gems Mod] (modid-1.0.jar)

Loaded coremods (and transformers):

GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.

Profiler Position: N/A (disabled)

Player Count: 1 / 8; [EntityPlayerMP['Player660'/391, l='New World', x=231.30, y=58.00, z=368.70]]

Type: Integrated Server (map_client.txt)

Is Modded: Definitely; Client brand changed to 'fml,forge'

 

 

 

FML log

 

[15:59:30] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.

[15:59:30] [main/INFO] [FML/]: Forge Mod Loader version 11.14.4.1563 for Minecraft 1.8 loading

[15:59:30] [main/INFO] [FML/]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_51, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jdk1.8.0_51\jre

[15:59:30] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\ikill\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\ikill\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\ikill\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1563\snapshot\20141130\forgeSrc-1.8-11.14.4.1563.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.15.Final\85cad5eb4fc8ae2ecc990dc7c411771a091ded5\netty-all-4.0.15.Final.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.17\893a8c553c0cfc9b6fbdff023747e30152ab09ec\authlib-1.5.17.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.6.1\5655f6fb44aece10e5b3ad7cfee3e6936031c068\realms-1.6.1.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\ikill\.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\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\206c4ccaecdbcfd2a1631150c69a97bbc9c20c11\twitch-platform-6.5-natives-windows-32.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\9fdd0fd5aed0817063dcf95b69349a171f447ebd\twitch-platform-6.5-natives-windows-64.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\5f9d1ee26257b3a33f0ca06fed335ef462af659f\twitch-platform-6.5-natives-osx.jar;C:\Users\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar;C:\Users\ikill\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1563\start;C:\Users\ikill\Documents\ForgeMods\New\build\libs\modid-1.0.jar

[15:59:30] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jdk1.8.0_51\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Users\ikill\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;;C:\Program Files (x86)\Microsoft VS Code\bin;.;C:/Users/ikill/.gradle/caches/minecraft/net/minecraft/natives/1.8

[15:59:30] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[15:59:30] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin

[15:59:30] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers

[15:59:30] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin

[15:59:30] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin

[15:59:30] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin

[15:59:30] [main/DEBUG] [FML/]: All fundamental core mods are successfully located

[15:59:30] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\ikill\Documents\ForgeMods\New\run\.

[15:59:30] [main/DEBUG] [FML/]: Discovering coremods

[15:59:30] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker

[15:59:30] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin

[15:59:30] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[15:59:30] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[15:59:30] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[15:59:30] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[15:59:30] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[15:59:30] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[15:59:30] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[15:59:30] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers

[15:59:30] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer

[15:59:31] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer

[15:59:31] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer

[15:59:31] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer

[15:59:31] [main/DEBUG] [FML/]: Injection complete

[15:59:31] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}

[15:59:31] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin

[15:59:31] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[15:59:31] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing

[15:59:31] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully

[15:59:31] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[15:59:31] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers

[15:59:31] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer

[15:59:31] [main/DEBUG] [FML/]: Injection complete

[15:59:31] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}

[15:59:31] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin

[15:59:31] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully

[15:59:31] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[15:59:31] [main/DEBUG] [FML/]: Loaded 159 rules from AccessTransformer config file forge_at.cfg

[15:59:31] [main/DEBUG] [FML/]: Validating minecraft

[15:59:32] [main/DEBUG] [FML/]: Minecraft validated, launching...

[15:59:32] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[15:59:32] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[15:59:32] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[15:59:32] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[15:59:36] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.004s

[15:59:36] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ----

// Shall we play a game?

 

Time: 12/12/15 3:59 PM

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

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.8.0_51, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 614637768 bytes (586 MB) / 722993152 bytes (689 MB) up to 3817865216 bytes (3641 MB)

JVM Flags: 0 total;

IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

FML:

Loaded coremods (and transformers):

GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 358.87' Renderer: 'GeForce GT 730/PCIe/SSE2'

[15:59:36] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization

[15:59:36] [Client thread/INFO] [FML/]: MinecraftForge v11.14.4.1563 Initialized

[15:59:36] [Client thread/INFO] [FML/]: Replaced 204 ore recipies

[15:59:36] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization

[15:59:36] [Client thread/DEBUG] [FML/]: File C:\Users\ikill\Documents\ForgeMods\New\run\config\injectedDependencies.json not found. No dependencies injected

[15:59:36] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]

[15:59:37] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes

[15:59:37] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates

[15:59:37] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates

[15:59:37] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1563\snapshot\20141130\forgeSrc-1.8-11.14.4.1563.jar, examining for mod candidates

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar

[15:59:37] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.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

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.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

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.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

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.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

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.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

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.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

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.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

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.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

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar

[15:59:37] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.15.Final\85cad5eb4fc8ae2ecc990dc7c411771a091ded5\netty-all-4.0.15.Final.jar

[15:59:37] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar, examining for mod candidates

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.17\893a8c553c0cfc9b6fbdff023747e30152ab09ec\authlib-1.5.17.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.6.1\5655f6fb44aece10e5b3ad7cfee3e6936031c068\realms-1.6.1.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\206c4ccaecdbcfd2a1631150c69a97bbc9c20c11\twitch-platform-6.5-natives-windows-32.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\9fdd0fd5aed0817063dcf95b69349a171f447ebd\twitch-platform-6.5-natives-windows-64.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\5f9d1ee26257b3a33f0ca06fed335ef462af659f\twitch-platform-6.5-natives-osx.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar

[15:59:37] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar

[15:59:37] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.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

[15:59:37] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\ikill\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1563\start, examining for mod candidates

[15:59:37] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\Documents\ForgeMods\New\build\libs\modid-1.0.jar, examining for mod candidates

[15:59:37] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully

[15:59:37] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer

[15:59:37] [Client thread/INFO] [FML/]: Searching C:\Users\ikill\Documents\ForgeMods\New\run\mods for mods

[15:59:37] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods

[15:59:37] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file

[15:59:37] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods

[15:59:37] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file

[15:59:37] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.8-11.14.4.1563.jar for potential mods

[15:59:37] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.8-11.14.4.1563.jar appears to be missing an mcmod.info file

[15:59:38] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods

[15:59:38] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file

[15:59:38] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods

[15:59:38] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file

[15:59:38] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods

[15:59:38] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file

[15:59:39] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods

[15:59:39] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file

[15:59:39] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods

[15:59:39] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start

[15:59:39] [Client thread/TRACE] [FML/]: Recursing into package net

[15:59:39] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge

[15:59:39] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle

[15:59:39] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers

[15:59:39] [Client thread/DEBUG] [FML/]: Examining file modid-1.0.jar for potential mods

[15:59:39] [Client thread/TRACE] [FML/]: Located mcmod.info file in file modid-1.0.jar

[15:59:39] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.biohazard.gems.Main) - loading

[15:59:39] [Client thread/TRACE] [hgm/]: Parsed dependency info : [] [] []

[15:59:39] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load

[15:59:39] [Client thread/TRACE] [FML/]: Received a system property request ''

[15:59:39] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods

[15:59:39] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods

[15:59:39] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8-11.14.4.1563.jar [en_US, en_US]

[15:59:39] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8-11.14.4.1563.jar [en_US, en_US]

[15:59:39] [Client thread/DEBUG] [hgm/]: Enabling mod hgm

[15:59:39] [Client thread/DEBUG] [FML/]: Found translations in modid-1.0.jar [en_US]

[15:59:39] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied

[15:59:39] [Client thread/TRACE] [FML/]: All mod requirements are satisfied

[15:59:39] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list

[15:59:39] [Client thread/TRACE] [FML/]: Mod sorting completed successfully

[15:59:39] [Client thread/DEBUG] [FML/]: Mod sorting data

[15:59:39] [Client thread/DEBUG] [FML/]: hgm(Hazardous Gems Mod:1.0): modid-1.0.jar ()

[15:59:39] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp

[15:59:39] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.002s

[15:59:39] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML

[15:59:39] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists

[15:59:39] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection

[15:59:39] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)

[15:59:39] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, hgm] at CLIENT

[15:59:39] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, hgm] at SERVER

[15:59:39] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0.325s

[15:59:39] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge

[15:59:39] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed

[15:59:39] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection

[15:59:39] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (11.14.4.1563)

[15:59:39] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.008s

[15:59:39] [Client thread/TRACE] [hgm/hgm]: Sending event FMLConstructionEvent to mod hgm

[15:59:39] [Client thread/TRACE] [FML/hgm]: Mod hgm is using network checker : Accepting version 1.0

[15:59:39] [Client thread/TRACE] [FML/hgm]: Testing mod hgm to verify it accepts its own version in a remote connection

[15:59:39] [Client thread/TRACE] [FML/hgm]: The mod hgm accepts its own version (1.0)

[15:59:39] [Client thread/DEBUG] [FML/hgm]: Attempting to inject @SidedProxy classes into hgm

[15:59:39] [Client thread/TRACE] [hgm/hgm]: Sent event FMLConstructionEvent to mod hgm

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Hazardous Gems Mod took 0.059s

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0.393s

[15:59:39] [Client thread/DEBUG] [FML/]: Mod signature data

[15:59:39] [Client thread/DEBUG] [FML/]:  Valid Signatures:

[15:59:39] [Client thread/DEBUG] [FML/]:  Missing Signatures:

[15:59:39] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.05) minecraft.jar

[15:59:39] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.8-11.14.4.1563.jar

[15:59:39] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 11.14.4.1563) forgeSrc-1.8-11.14.4.1563.jar

[15:59:39] [Client thread/DEBUG] [FML/]: hgm (Hazardous Gems Mod 1.0) modid-1.0.jar

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.006s

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.024s

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.020s

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Hazardous Gems Mod took 0.002s

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.050s

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.051s

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.103s

[15:59:39] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one

[15:59:39] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one

[15:59:39] [Client thread/DEBUG] [Hazardous Gems Mod/]: Mod Hazardous Gems Mod is missing a pack.mcmeta file, substituting a dummy one

[15:59:39] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations

[15:59:39] [Client thread/INFO] [FML/]: Found 384 ObjectHolder annotations

[15:59:39] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations

[15:59:39] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations

[15:59:39] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp

[15:59:39] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.002s

[15:59:39] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML

[15:59:39] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.012s

[15:59:39] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge

[15:59:39] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0

[15:59:39] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge

[15:59:39] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.031s

[15:59:39] [Client thread/TRACE] [hgm/hgm]: Sending event FMLPreInitializationEvent to mod hgm

[15:59:39] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json

[15:59:40] [Client thread/TRACE] [hgm/hgm]: Sent event FMLPreInitializationEvent to mod hgm

[15:59:40] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Hazardous Gems Mod took 0.089s

[15:59:40] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0.134s

[15:59:40] [Client thread/INFO] [FML/]: Applying holder lookups

[15:59:40] [Client thread/INFO] [FML/]: Holder lookups applied

[15:59:40] [Client thread/INFO] [FML/]: Injecting itemstacks

[15:59:40] [Client thread/INFO] [FML/]: Itemstack injection complete

[15:59:40] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.000s

[15:59:40] [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.1623",

    "latest": "11.14.4.1577",

    "latest-1.7.10": "10.13.2.1343",

    "recommended": "11.14.4.1563"

  }

}

[15:59:40] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: UP_TO_DATE Target: null

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 1.962s

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.005s

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.004s

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.008s

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.010s

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.000s

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.007s

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s

[15:59:42] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_pick#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_axe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_spade#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_hoe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_pick#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_axe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_spade#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_hoe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_pick#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_axe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_spade#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_hoe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_pick#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_axe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_spade#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_hoe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_pick#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_axe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_spade#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_hoe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_pick#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_axe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_spade#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_hoe#inventory', trying to load the variant from the blockstate json

[15:59:43] [Client thread/INFO] [FML/]: Max texture size: 16384

[15:59:43] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.001s

[15:59:43] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.003s

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_axe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_axe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_hoe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_hoe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_spade#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_pick#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_spade#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_pick#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_spade#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_pick#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_hoe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_pick#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_pick#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_axe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_spade#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_axe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_axe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_spade#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_hoe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_axe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_spade#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_pick#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_hoe#inventory not found

[15:59:44] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_hoe#inventory not found

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 2.039s

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 2.126s

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.003s

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0.409s

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.191s

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 2.733s

[15:59:44] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp

[15:59:44] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s

[15:59:44] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML

[15:59:44] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.000s

[15:59:44] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge

[15:59:44] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.000s

[15:59:44] [Client thread/TRACE] [hgm/hgm]: Sending event FMLInitializationEvent to mod hgm

[15:59:44] [Client thread/TRACE] [hgm/hgm]: Sent event FMLInitializationEvent to mod hgm

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Hazardous Gems Mod took 0.009s

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.011s

[15:59:44] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp

[15:59:44] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp

[15:59:44] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.003s

[15:59:44] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML

[15:59:44] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML

[15:59:44] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.001s

[15:59:44] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge

[15:59:44] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge

[15:59:44] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s

[15:59:44] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod hgm

[15:59:44] [Client thread/TRACE] [hgm/hgm]: Sending event IMCEvent to mod hgm

[15:59:44] [Client thread/TRACE] [hgm/hgm]: Sent event IMCEvent to mod hgm

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Hazardous Gems Mod took 0.000s

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.004s

[15:59:44] [Client thread/INFO] [FML/]: Injecting itemstacks

[15:59:44] [Client thread/INFO] [FML/]: Itemstack injection complete

[15:59:44] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp

[15:59:44] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.001s

[15:59:44] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML

[15:59:44] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML

[15:59:44] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s

[15:59:44] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge

[15:59:45] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.065s

[15:59:45] [Client thread/TRACE] [hgm/hgm]: Sending event FMLPostInitializationEvent to mod hgm

[15:59:45] [Client thread/TRACE] [hgm/hgm]: Sent event FMLPostInitializationEvent to mod hgm

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Hazardous Gems Mod took 0.000s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.067s

[15:59:45] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp

[15:59:45] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.000s

[15:59:45] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML

[15:59:45] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s

[15:59:45] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge

[15:59:45] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  14: RecipeEntry("Before", UNKNOWN, )

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  13: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  12: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  11: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  10: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  9: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  8: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  7: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  6: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  5: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  4: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless

[15:59:45] [Client thread/DEBUG] [FML/Forge]:  1: RecipeEntry("After", UNKNOWN, )

[15:59:45] [Client thread/DEBUG] [FML/Forge]: Sorting recipies

[15:59:45] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.007s

[15:59:45] [Client thread/TRACE] [hgm/hgm]: Sending event FMLLoadCompleteEvent to mod hgm

[15:59:45] [Client thread/TRACE] [hgm/hgm]: Sent event FMLLoadCompleteEvent to mod hgm

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Hazardous Gems Mod took 0.001s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.008s

[15:59:45] [Client thread/DEBUG] [FML/]: Freezing block and item id maps

[15:59:45] [Client thread/DEBUG] [FML/]: Registry consistency check successful

[15:59:45] [Client thread/DEBUG] [FML/]: Registry consistency check successful

[15:59:45] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.000s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.014s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.015s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Hazardous Gems Mod took 0.001s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.005s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.000s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.003s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.005s

[15:59:45] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.013s

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_pick#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_axe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_spade#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_hoe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_pick#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_axe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_spade#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_hoe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_pick#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_axe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_spade#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_hoe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_pick#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_axe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_spade#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_hoe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_pick#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_axe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_spade#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_hoe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_pick#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_axe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_spade#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_hoe#inventory', trying to load the variant from the blockstate json

[15:59:47] [Client thread/INFO] [FML/]: Max texture size: 16384

[15:59:47] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.254s

[15:59:48] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0.327s

[15:59:48] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.038s

[15:59:48] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.063s

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_axe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_axe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_hoe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_hoe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_spade#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_pick#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_spade#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_pick#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_spade#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_pick#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_hoe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_pick#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_pick#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_axe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_spade#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_axe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_axe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_spade#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_hoe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_axe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_spade#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_pick#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_hoe#inventory not found

[15:59:48] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_hoe#inventory not found

[15:59:49] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 3.954s

[15:59:49] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 3.954s

[15:59:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 3.984s

[15:59:49] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one

[15:59:49] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one

[15:59:49] [Client thread/DEBUG] [Hazardous Gems Mod/]: Mod Hazardous Gems Mod is missing a pack.mcmeta file, substituting a dummy one

[15:59:49] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 12.207s

[15:59:54] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp

[15:59:54] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp

[15:59:54] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0.001s

[15:59:54] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML

[15:59:54] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML

[15:59:54] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0.000s

[15:59:54] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge

[15:59:54] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge

[15:59:54] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0.000s

[15:59:54] [server thread/TRACE] [hgm/hgm]: Sending event FMLServerAboutToStartEvent to mod hgm

[15:59:54] [server thread/TRACE] [hgm/hgm]: Sent event FMLServerAboutToStartEvent to mod hgm

[15:59:54] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Hazardous Gems Mod took 0.000s

[15:59:54] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0.001s

[15:59:54] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance

[15:59:54] [server thread/DEBUG] [FML/]: Registry consistency check successful

[15:59:54] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_red: 198 (init) -> 204 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_yellow: 201 (init) -> 205 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_purple: 202 (init) -> 206 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_black: 203 (init) -> 209 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_blue: 199 (init) -> 207 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_green: 200 (init) -> 208 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_sword: 4097 (init) -> 4104 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_red: 198 (init) -> 204 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_blue_sword: 4103 (init) -> 4120 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_pick: 4098 (init) -> 4108 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_green_axe: 4111 (init) -> 4118 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_yellow: 201 (init) -> 205 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_blue_pick: 4104 (init) -> 4105 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_hoe: 4101 (init) -> 4106 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_blue_axe: 4105 (init) -> 4126 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_yellow_pick: 4116 (init) -> 4132 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_black_spade: 4130 (init) -> 4133 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_powered_pick: 4133 (init) -> 4134 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_purple: 202 (init) -> 206 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_green_spade: 4112 (init) -> 4114 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_black: 4126 (init) -> 4101 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_blue: 4102 (init) -> 4097 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_black: 203 (init) -> 209 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_yellow: 4114 (init) -> 4099 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_powered: 4132 (init) -> 4103 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_spade: 4100 (init) -> 4116 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_blue_spade: 4106 (init) -> 4111 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_yellow_spade: 4118 (init) -> 4130 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_purple: 4120 (init) -> 4100 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_axe: 4099 (init) -> 4112 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_blue: 199 (init) -> 207 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_green: 4108 (init) -> 4098 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_green: 200 (init) -> 208 (map).

[15:59:54] [server thread/DEBUG] [FML/]: Registry consistency check successful

[15:59:54] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp

[15:59:54] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp

[15:59:54] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s

[15:59:54] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML

[15:59:54] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML

[15:59:54] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s

[15:59:54] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge

[15:59:54] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge

[15:59:54] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.001s

[15:59:54] [server thread/TRACE] [hgm/hgm]: Sending event FMLModIdMappingEvent to mod hgm

[15:59:54] [server thread/TRACE] [hgm/hgm]: Sent event FMLModIdMappingEvent to mod hgm

[15:59:54] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Hazardous Gems Mod took 0.000s

[15:59:54] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.002s

[15:59:54] [server thread/INFO] [FML/]: Applying holder lookups

[15:59:54] [server thread/INFO] [FML/]: Holder lookups applied

[15:59:54] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world

[15:59:54] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava

[15:59:54] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water

[15:59:55] [server thread/INFO] [FML/]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@7e1f1fd)

[15:59:55] [server thread/INFO] [FML/]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@7e1f1fd)

[15:59:55] [server thread/INFO] [FML/]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@7e1f1fd)

[15:59:56] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp

[15:59:56] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp

[15:59:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0.001s

[15:59:56] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML

[15:59:56] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML

[15:59:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0.001s

[15:59:56] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge

[15:59:56] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge

[15:59:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0.002s

[15:59:56] [server thread/TRACE] [hgm/hgm]: Sending event FMLServerStartingEvent to mod hgm

[15:59:56] [server thread/TRACE] [hgm/hgm]: Sent event FMLServerStartingEvent to mod hgm

[15:59:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Hazardous Gems Mod took 0.000s

[15:59:56] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0.004s

[15:59:56] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp

[15:59:56] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp

[15:59:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0.000s

[15:59:56] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML

[15:59:56] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML

[15:59:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0.000s

[15:59:56] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge

[15:59:56] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge

[15:59:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0.000s

[15:59:56] [server thread/TRACE] [hgm/hgm]: Sending event FMLServerStartedEvent to mod hgm

[15:59:56] [server thread/TRACE] [hgm/hgm]: Sent event FMLServerStartedEvent to mod hgm

[15:59:56] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Hazardous Gems Mod took 0.000s

[15:59:56] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0.001s

[15:59:57] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]:  Next: HELLO

[15:59:57] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]:  Next: HELLO

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO

[15:59:57] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO

[15:59:57] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]:  Next: HELLO

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]:  Next: WAITINGSERVERDATA

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO

[15:59:57] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]:  Next: WAITINGCACK

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]:  Next: COMPLETE

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]:  Next: PENDINGCOMPLETE

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]:  Next: DONE

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]:  Next: COMPLETE

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE

[15:59:57] [Netty Local Client IO #0/DEBUG] [FML/]:  Next: DONE

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE

[15:59:57] [Netty Server IO #1/DEBUG] [FML/]:  Next: DONE

[15:59:57] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established

[15:59:57] [server thread/INFO] [FML/]: [server thread] Server side modded connection established

[15:59:57] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0

[16:00:41] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World

[16:00:42] [server thread/ERROR] [FML/]: Exception caught during firing event net.minecraftforge.event.world.BlockEvent$HarvestDropsEvent@1aa7a759:

java.lang.NullPointerException

at com.biohazard.gems.GemEventHandler.infusedPick(GemEventHandler.java:18) ~[GemEventHandler.class:?]

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_GemEventHandler_infusedPick_HarvestDropsEvent.invoke(.dynamic) ~[?:?]

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55) ~[ASMEventHandler.class:?]

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?]

at net.minecraftforge.event.ForgeEventFactory.fireBlockHarvesting(ForgeEventFactory.java:190) [ForgeEventFactory.class:?]

at net.minecraft.block.Block.dropBlockAsItemWithChance(Block.java:611) [block.class:?]

at net.minecraft.block.Block.dropBlockAsItem(Block.java:597) [block.class:?]

at net.minecraft.block.BlockDoublePlant.checkAndDropBlock(BlockDoublePlant.java:95) [blockDoublePlant.class:?]

at net.minecraft.block.BlockBush.updateTick(BlockBush.java:57) [blockBush.class:?]

at net.minecraft.block.Block.randomTick(Block.java:528) [block.class:?]

at net.minecraft.world.WorldServer.updateBlocks(WorldServer.java:467) [WorldServer.class:?]

at net.minecraft.world.WorldServer.tick(WorldServer.java:228) [WorldServer.class:?]

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764) [MinecraftServer.class:?]

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) [MinecraftServer.class:?]

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) [integratedServer.class:?]

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?]

at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51]

[16:00:42] [server thread/ERROR] [FML/]: Index: 1 Listeners:

[16:00:42] [server thread/ERROR] [FML/]: 0: NORMAL

[16:00:42] [server thread/ERROR] [FML/]: 1: ASM: com.biohazard.gems.GemEventHandler@36afd06f infusedPick(Lnet/minecraftforge/event/world/BlockEvent$HarvestDropsEvent;)V

[16:00:42] [Client thread/INFO] [sTDOUT/]: [net.minecraft.init.Bootstrap:printToSYSOUT:663]: ---- Minecraft Crash Report ----

// Would you like a cupcake?

 

Time: 12/12/15 4:00 PM

Description: Exception ticking world

 

java.lang.NullPointerException: Exception ticking world

at com.biohazard.gems.GemEventHandler.infusedPick(GemEventHandler.java:18)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_GemEventHandler_infusedPick_HarvestDropsEvent.invoke(.dynamic)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55)

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)

at net.minecraftforge.event.ForgeEventFactory.fireBlockHarvesting(ForgeEventFactory.java:190)

at net.minecraft.block.Block.dropBlockAsItemWithChance(Block.java:611)

at net.minecraft.block.Block.dropBlockAsItem(Block.java:597)

at net.minecraft.block.BlockDoublePlant.checkAndDropBlock(BlockDoublePlant.java:95)

at net.minecraft.block.BlockBush.updateTick(BlockBush.java:57)

at net.minecraft.block.Block.randomTick(Block.java:528)

at net.minecraft.world.WorldServer.updateBlocks(WorldServer.java:467)

at net.minecraft.world.WorldServer.tick(WorldServer.java:228)

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)

at java.lang.Thread.run(Thread.java:745)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at com.biohazard.gems.GemEventHandler.infusedPick(GemEventHandler.java:18)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_GemEventHandler_infusedPick_HarvestDropsEvent.invoke(.dynamic)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55)

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)

at net.minecraftforge.event.ForgeEventFactory.fireBlockHarvesting(ForgeEventFactory.java:190)

at net.minecraft.block.Block.dropBlockAsItemWithChance(Block.java:611)

at net.minecraft.block.Block.dropBlockAsItem(Block.java:597)

at net.minecraft.block.BlockDoublePlant.checkAndDropBlock(BlockDoublePlant.java:95)

at net.minecraft.block.BlockBush.updateTick(BlockBush.java:57)

at net.minecraft.block.Block.randomTick(Block.java:528)

at net.minecraft.world.WorldServer.updateBlocks(WorldServer.java:467)

at net.minecraft.world.WorldServer.tick(WorldServer.java:228)

 

-- Affected level --

Details:

Level name: New World

All players: 1 total; [EntityPlayerMP['Player660'/391, l='New World', x=231.30, y=58.00, z=368.70]]

Chunk stats: ServerChunkCache: 700 Drop: 0

Level seed: -1814084668358052926

Level generator: ID 00 - default, ver 1. Features enabled: true

Level generator options:

Level spawn location: 176.00,64.00,248.00 - World: (176,64,248), Chunk: (at 0,4,8 in 11,15; contains blocks 176,0,240 to 191,255,255), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)

Level time: 67843 game time, 67843 day time

Level dimension: 0

Level storage version: 0x04ABD - Anvil

Level weather: Rain time: 70603 (now: false), thunder time: 10969 (now: false)

Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true

Stacktrace:

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)

at java.lang.Thread.run(Thread.java:745)

 

-- System Details --

Details:

Minecraft Version: 1.8

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.8.0_51, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 449701296 bytes (428 MB) / 1524105216 bytes (1453 MB) up to 3817865216 bytes (3641 MB)

JVM Flags: 0 total;

IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94

FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.4.1563 4 mods loaded, 4 mods active

States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)

UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.4.1563.jar)

UCHIJAAAA Forge{11.14.4.1563} [Minecraft Forge] (forgeSrc-1.8-11.14.4.1563.jar)

UCHIJAAAA hgm{1.0} [Hazardous Gems Mod] (modid-1.0.jar)

Loaded coremods (and transformers):

GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.

Profiler Position: N/A (disabled)

Player Count: 1 / 8; [EntityPlayerMP['Player660'/391, l='New World', x=231.30, y=58.00, z=368.70]]

Type: Integrated Server (map_client.txt)

Is Modded: Definitely; Client brand changed to 'fml,forge'

[16:00:42] [Client thread/INFO] [sTDOUT/]: [net.minecraft.init.Bootstrap:printToSYSOUT:663]: #@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2015-12-12_16.00.42-server.txt

[16:00:42] [Client thread/INFO] [FML/]: Waiting for the server to terminate/save.

[16:00:42] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World

[16:00:43] [server thread/INFO] [FML/]: Unloading dimension 0

[16:00:43] [server thread/INFO] [FML/]: Unloading dimension -1

[16:00:43] [server thread/INFO] [FML/]: Unloading dimension 1

[16:00:43] [server thread/DEBUG] [FML/]: Reverting to frozen data state.

[16:00:43] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp

[16:00:43] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp

[16:00:43] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s

[16:00:43] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML

[16:00:43] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML

[16:00:43] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s

[16:00:43] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge

[16:00:43] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge

[16:00:43] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.000s

[16:00:43] [server thread/TRACE] [hgm/hgm]: Sending event FMLModIdMappingEvent to mod hgm

[16:00:43] [server thread/TRACE] [hgm/hgm]: Sent event FMLModIdMappingEvent to mod hgm

[16:00:43] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Hazardous Gems Mod took 0.000s

[16:00:43] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.001s

[16:00:43] [server thread/INFO] [FML/]: Applying holder lookups

[16:00:43] [server thread/INFO] [FML/]: Holder lookups applied

[16:00:43] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp

[16:00:43] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp

[16:00:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Coder Pack took 0.000s

[16:00:43] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML

[16:00:43] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML

[16:00:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Forge Mod Loader took 0.000s

[16:00:43] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge

[16:00:43] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge

[16:00:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Forge took 0.000s

[16:00:43] [server thread/TRACE] [hgm/hgm]: Sending event FMLServerStoppedEvent to mod hgm

[16:00:43] [server thread/TRACE] [hgm/hgm]: Sent event FMLServerStoppedEvent to mod hgm

[16:00:43] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Hazardous Gems Mod took 0.000s

[16:00:43] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopped took 0.001s

[16:00:43] [server thread/INFO] [FML/]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.

[16:00:43] [Client thread/INFO] [FML/]: Server terminated.

 

 

 

Event code:

 

@SubscribeEvent

public void infusedPick(BlockEvent.HarvestDropsEvent event){

EntityPlayer player = event.harvester;

ItemStack heldItem = player.inventory.getCurrentItem();

Block block = event.state.getBlock();

 

if(heldItem == null){

return;

}

 

if(heldItem == new ItemStack(GemItems.redPoweredPick)) {

 

if (block == Blocks.stone) {

event.drops.remove(Blocks.cobblestone);

event.drops.add(new ItemStack(Blocks.stone));

}

 

}

 

}

 

Link to comment
Share on other sites

For the third time:

heldItem == new ItemStack(GemItems.redPoweredPick)

does not work. You have to directly compare the [ttItem[/code], not the

ItemStack

.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

i had already fixed item stack thing, and even with the cheaking of the null, the game will crash randomly, (i could be doing something, or not it will still crash)

and it crashes on the first line that contains    player.getHeldItem()    and throws    java.lang.NullPointerException: Exception ticking world

Sorry for all the trouble

 

Code

 

 

@SubscribeEvent

public void infusedPick(BlockEvent.HarvestDropsEvent event){

EntityPlayer player = event.harvester;

if(player.getHeldItem() == null){

return;

}

 

 

 

Block block = event.state.getBlock();

Item heldItem = player.getHeldItem().getItem();

 

 

 

if(heldItem.equals(GemItems.redPoweredPick)){

if (block.equals(Blocks.stone)) {

event.drops.remove(Blocks.cobblestone);

event.drops.add(new ItemStack(Blocks.stone));

 

 

}

}

 

}

 

 

 

crash report

 

---- Minecraft Crash Report ----

// Ouch. That hurt :(

 

Time: 12/12/15 5:27 PM

Description: Exception ticking world

 

java.lang.NullPointerException: Exception ticking world

at com.biohazard.gems.GemEventHandler.infusedPick(GemEventHandler.java:23)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_GemEventHandler_infusedPick_HarvestDropsEvent.invoke(.dynamic)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55)

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)

at net.minecraftforge.event.ForgeEventFactory.fireBlockHarvesting(ForgeEventFactory.java:190)

at net.minecraft.block.Block.dropBlockAsItemWithChance(Block.java:611)

at net.minecraft.block.Block.dropBlockAsItem(Block.java:597)

at net.minecraft.block.BlockBush.checkAndDropBlock(BlockBush.java:64)

at net.minecraft.block.BlockBush.updateTick(BlockBush.java:57)

at net.minecraft.block.Block.randomTick(Block.java:528)

at net.minecraft.world.WorldServer.updateBlocks(WorldServer.java:467)

at net.minecraft.world.WorldServer.tick(WorldServer.java:228)

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)

at java.lang.Thread.run(Thread.java:745)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at com.biohazard.gems.GemEventHandler.infusedPick(GemEventHandler.java:23)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_GemEventHandler_infusedPick_HarvestDropsEvent.invoke(.dynamic)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55)

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)

at net.minecraftforge.event.ForgeEventFactory.fireBlockHarvesting(ForgeEventFactory.java:190)

at net.minecraft.block.Block.dropBlockAsItemWithChance(Block.java:611)

at net.minecraft.block.Block.dropBlockAsItem(Block.java:597)

at net.minecraft.block.BlockBush.checkAndDropBlock(BlockBush.java:64)

at net.minecraft.block.BlockBush.updateTick(BlockBush.java:57)

at net.minecraft.block.Block.randomTick(Block.java:528)

at net.minecraft.world.WorldServer.updateBlocks(WorldServer.java:467)

at net.minecraft.world.WorldServer.tick(WorldServer.java:228)

 

-- Affected level --

Details:

Level name: New World

All players: 1 total; [EntityPlayerMP['Player100'/378, l='New World', x=233.62, y=63.00, z=375.77]]

Chunk stats: ServerChunkCache: 894 Drop: 0

Level seed: -1814084668358052926

Level generator: ID 00 - default, ver 1. Features enabled: true

Level generator options:

Level spawn location: 176.00,64.00,248.00 - World: (176,64,248), Chunk: (at 0,4,8 in 11,15; contains blocks 176,0,240 to 191,255,255), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)

Level time: 69466 game time, 69466 day time

Level dimension: 0

Level storage version: 0x04ABD - Anvil

Level weather: Rain time: 68980 (now: false), thunder time: 9346 (now: false)

Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true

Stacktrace:

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)

at java.lang.Thread.run(Thread.java:745)

 

-- System Details --

Details:

Minecraft Version: 1.8

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.8.0_51, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 357171232 bytes (340 MB) / 1534066688 bytes (1463 MB) up to 3817865216 bytes (3641 MB)

JVM Flags: 0 total;

IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94

FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.4.1563 4 mods loaded, 4 mods active

States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)

UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.4.1563.jar)

UCHIJAAAA Forge{11.14.4.1563} [Minecraft Forge] (forgeSrc-1.8-11.14.4.1563.jar)

UCHIJAAAA hgm{1.0} [Hazardous Gems Mod] (modid-1.0.jar)

Loaded coremods (and transformers):

GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.

Profiler Position: N/A (disabled)

Player Count: 1 / 8; [EntityPlayerMP['Player100'/378, l='New World', x=233.62, y=63.00, z=375.77]]

Type: Integrated Server (map_client.txt)

Is Modded: Definitely; Client brand changed to 'fml,forge'

 

 

 

 

fml log

 

[17:28:09] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.

[17:28:09] [main/INFO] [FML/]: Forge Mod Loader version 11.14.4.1563 for Minecraft 1.8 loading

[17:28:09] [main/INFO] [FML/]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_51, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jdk1.8.0_51\jre

[17:28:09] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\ikill\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\ikill\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\ikill\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1563\snapshot\20141130\forgeSrc-1.8-11.14.4.1563.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.15.Final\85cad5eb4fc8ae2ecc990dc7c411771a091ded5\netty-all-4.0.15.Final.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.17\893a8c553c0cfc9b6fbdff023747e30152ab09ec\authlib-1.5.17.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.6.1\5655f6fb44aece10e5b3ad7cfee3e6936031c068\realms-1.6.1.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\ikill\.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\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\206c4ccaecdbcfd2a1631150c69a97bbc9c20c11\twitch-platform-6.5-natives-windows-32.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\9fdd0fd5aed0817063dcf95b69349a171f447ebd\twitch-platform-6.5-natives-windows-64.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\5f9d1ee26257b3a33f0ca06fed335ef462af659f\twitch-platform-6.5-natives-osx.jar;C:\Users\ikill\.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\ikill\.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\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar;C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar;C:\Users\ikill\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1563\start;C:\Users\ikill\Documents\ForgeMods\New\build\libs\modid-1.0.jar

[17:28:09] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jdk1.8.0_51\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Users\ikill\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;;C:\Program Files (x86)\Microsoft VS Code\bin;.;C:/Users/ikill/.gradle/caches/minecraft/net/minecraft/natives/1.8

[17:28:09] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[17:28:09] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin

[17:28:09] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers

[17:28:09] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin

[17:28:09] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin

[17:28:09] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin

[17:28:09] [main/DEBUG] [FML/]: All fundamental core mods are successfully located

[17:28:09] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\ikill\Documents\ForgeMods\New\run\.

[17:28:09] [main/DEBUG] [FML/]: Discovering coremods

[17:28:09] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker

[17:28:09] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin

[17:28:09] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[17:28:09] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[17:28:09] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[17:28:09] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[17:28:09] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[17:28:09] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[17:28:09] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[17:28:09] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers

[17:28:09] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer

[17:28:09] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer

[17:28:09] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer

[17:28:09] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer

[17:28:09] [main/DEBUG] [FML/]: Injection complete

[17:28:09] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}

[17:28:09] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin

[17:28:09] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[17:28:11] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing

[17:28:11] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully

[17:28:11] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[17:28:11] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers

[17:28:11] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.classloading.FluidIdTransformer

[17:28:11] [main/DEBUG] [FML/]: Injection complete

[17:28:11] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}

[17:28:11] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin

[17:28:11] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully

[17:28:11] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[17:28:11] [main/DEBUG] [FML/]: Loaded 159 rules from AccessTransformer config file forge_at.cfg

[17:28:11] [main/DEBUG] [FML/]: Validating minecraft

[17:28:11] [main/DEBUG] [FML/]: Minecraft validated, launching...

[17:28:11] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[17:28:11] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[17:28:11] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[17:28:11] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[17:28:17] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.004s

[17:28:17] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ----

// Don't be sad, have a hug! <3

 

Time: 12/12/15 5:28 PM

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

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.8.0_51, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 599588200 bytes (571 MB) / 711458816 bytes (678 MB) up to 3817865216 bytes (3641 MB)

JVM Flags: 0 total;

IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

FML:

Loaded coremods (and transformers):

GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 358.87' Renderer: 'GeForce GT 730/PCIe/SSE2'

[17:28:17] [Client thread/INFO] [MinecraftForge/]: Attempting early MinecraftForge initialization

[17:28:17] [Client thread/INFO] [FML/]: MinecraftForge v11.14.4.1563 Initialized

[17:28:17] [Client thread/INFO] [FML/]: Replaced 204 ore recipies

[17:28:17] [Client thread/INFO] [MinecraftForge/]: Completed early MinecraftForge initialization

[17:28:17] [Client thread/DEBUG] [FML/]: File C:\Users\ikill\Documents\ForgeMods\New\run\config\injectedDependencies.json not found. No dependencies injected

[17:28:17] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]

[17:28:17] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes

[17:28:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar, examining for mod candidates

[17:28:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar, examining for mod candidates

[17:28:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1563\snapshot\20141130\forgeSrc-1.8-11.14.4.1563.jar, examining for mod candidates

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar

[17:28:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.0.3\f9e364ae2a66ce2a543012a4668856e84e5dab74\asm-debug-all-5.0.3.jar, examining for mod candidates

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\4.6\306816fb57cf94f108a43c95731b08934dcae15c\jopt-simple-4.6.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar

[17:28:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar, examining for mod candidates

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.0.15.Final\85cad5eb4fc8ae2ecc990dc7c411771a091ded5\netty-all-4.0.15.Final.jar

[17:28:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\17.0\9c6ef172e8de35fd8d4d8783e4821e57cdef7445\guava-17.0.jar, examining for mod candidates

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.3.2\90a3822c38ec8c996e84c16a3477ef632cbc87a3\commons-lang3-3.3.2.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.4\b1b6ea3b7e4aa4f492509a4952029cd8e48019ad\commons-io-2.4.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.9\9ce04e34240f674bc72680f8b843b1457383161a\commons-codec-1.9.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.2.4\a60a5e993c98c864010053cb901b7eab25306568\gson-2.2.4.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.17\893a8c553c0cfc9b6fbdff023747e30152ab09ec\authlib-1.5.17.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.6.1\5655f6fb44aece10e5b3ad7cfee3e6936031c068\realms-1.6.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.0-beta9\1dd66e68cccd907880229f9e2de1314bd13ff785\log4j-api-2.0-beta9.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.0-beta9\678861ba1b2e1fccb594bb0ca03114bb05da9695\log4j-core-2.0-beta9.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.1\f58c5aabcef0e41718a564be9f8e412fff8db847\lwjgl-2.9.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.1\290d7ba8a1bd9566f5ddf16ad06f09af5ec9b20e\lwjgl_util-2.9.1.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch\6.5\320a2dfd18513a5f41b4e75729df684488cbd925\twitch-6.5.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\206c4ccaecdbcfd2a1631150c69a97bbc9c20c11\twitch-platform-6.5-natives-windows-32.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\9fdd0fd5aed0817063dcf95b69349a171f447ebd\twitch-platform-6.5-natives-windows-64.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-platform\6.5\5f9d1ee26257b3a33f0ca06fed335ef462af659f\twitch-platform-6.5-natives-osx.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\18215140f010c05b9f86ef6f0f8871954d2ccebf\twitch-external-platform-4.5-natives-windows-32.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\tv.twitch\twitch-external-platform\4.5\c3cde57891b935d41b6680a9c5e1502eeab76d86\twitch-external-platform-4.5-natives-windows-64.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\4c517eca808522457dd95ee8fc1fbcdbb602efbe\lwjgl-platform-2.9.1-natives-windows.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\aa9aae879af8eb378e22cfc64db56ec2ca9a44d1\lwjgl-platform-2.9.1-natives-linux.jar

[17:28:17] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\ikill\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.1\2d12c83fdfbc04ecabf02c7bc8cc54d034f0daac\lwjgl-platform-2.9.1-natives-osx.jar

[17:28:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\2.0.1\516c03b21d50a644d538de0f0369c620989cd8f0\jsr305-2.0.1.jar, examining for mod candidates

[17:28:17] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at C:\Users\ikill\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.4.1563\start, examining for mod candidates

[17:28:17] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\ikill\Documents\ForgeMods\New\build\libs\modid-1.0.jar, examining for mod candidates

[17:28:17] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully

[17:28:17] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer

[17:28:17] [Client thread/INFO] [FML/]: Searching C:\Users\ikill\Documents\ForgeMods\New\run\mods for mods

[17:28:17] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods

[17:28:17] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file

[17:28:17] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods

[17:28:17] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file

[17:28:17] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.8-11.14.4.1563.jar for potential mods

[17:28:17] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.8-11.14.4.1563.jar appears to be missing an mcmod.info file

[17:28:19] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods

[17:28:19] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file

[17:28:19] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods

[17:28:19] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file

[17:28:19] [Client thread/DEBUG] [FML/]: Examining file guava-17.0.jar for potential mods

[17:28:19] [Client thread/DEBUG] [FML/]: The mod container guava-17.0.jar appears to be missing an mcmod.info file

[17:28:19] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods

[17:28:19] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file

[17:28:19] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods

[17:28:19] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start

[17:28:19] [Client thread/TRACE] [FML/]: Recursing into package net

[17:28:19] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge

[17:28:19] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle

[17:28:19] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers

[17:28:19] [Client thread/DEBUG] [FML/]: Examining file modid-1.0.jar for potential mods

[17:28:19] [Client thread/TRACE] [FML/]: Located mcmod.info file in file modid-1.0.jar

[17:28:19] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (com.biohazard.gems.Main) - loading

[17:28:19] [Client thread/TRACE] [hgm/]: Parsed dependency info : [] [] []

[17:28:19] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load

[17:28:19] [Client thread/TRACE] [FML/]: Received a system property request ''

[17:28:19] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods

[17:28:19] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods

[17:28:19] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8-11.14.4.1563.jar [en_US, en_US]

[17:28:19] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8-11.14.4.1563.jar [en_US, en_US]

[17:28:19] [Client thread/DEBUG] [hgm/]: Enabling mod hgm

[17:28:19] [Client thread/DEBUG] [FML/]: Found translations in modid-1.0.jar [en_US]

[17:28:19] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied

[17:28:19] [Client thread/TRACE] [FML/]: All mod requirements are satisfied

[17:28:19] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list

[17:28:19] [Client thread/TRACE] [FML/]: Mod sorting completed successfully

[17:28:19] [Client thread/DEBUG] [FML/]: Mod sorting data

[17:28:19] [Client thread/DEBUG] [FML/]: hgm(Hazardous Gems Mod:1.0): modid-1.0.jar ()

[17:28:19] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp

[17:28:19] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp

[17:28:19] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.008s

[17:28:19] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML

[17:28:19] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists

[17:28:19] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection

[17:28:19] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)

[17:28:19] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, hgm] at CLIENT

[17:28:19] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, hgm] at SERVER

[17:28:20] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0.397s

[17:28:20] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge

[17:28:20] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed

[17:28:20] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection

[17:28:20] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (11.14.4.1563)

[17:28:20] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.015s

[17:28:20] [Client thread/TRACE] [hgm/hgm]: Sending event FMLConstructionEvent to mod hgm

[17:28:20] [Client thread/TRACE] [FML/hgm]: Mod hgm is using network checker : Accepting version 1.0

[17:28:20] [Client thread/TRACE] [FML/hgm]: Testing mod hgm to verify it accepts its own version in a remote connection

[17:28:20] [Client thread/TRACE] [FML/hgm]: The mod hgm accepts its own version (1.0)

[17:28:20] [Client thread/DEBUG] [FML/hgm]: Attempting to inject @SidedProxy classes into hgm

[17:28:20] [Client thread/TRACE] [hgm/hgm]: Sent event FMLConstructionEvent to mod hgm

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Hazardous Gems Mod took 0.043s

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0.462s

[17:28:20] [Client thread/DEBUG] [FML/]: Mod signature data

[17:28:20] [Client thread/DEBUG] [FML/]:  Valid Signatures:

[17:28:20] [Client thread/DEBUG] [FML/]:  Missing Signatures:

[17:28:20] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.05) minecraft.jar

[17:28:20] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.8-11.14.4.1563.jar

[17:28:20] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 11.14.4.1563) forgeSrc-1.8-11.14.4.1563.jar

[17:28:20] [Client thread/DEBUG] [FML/]: hgm (Hazardous Gems Mod 1.0) modid-1.0.jar

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.009s

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.032s

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.034s

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Hazardous Gems Mod took 0.001s

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.071s

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.072s

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.149s

[17:28:20] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one

[17:28:20] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one

[17:28:20] [Client thread/DEBUG] [Hazardous Gems Mod/]: Mod Hazardous Gems Mod is missing a pack.mcmeta file, substituting a dummy one

[17:28:20] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations

[17:28:20] [Client thread/INFO] [FML/]: Found 384 ObjectHolder annotations

[17:28:20] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations

[17:28:20] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations

[17:28:20] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp

[17:28:20] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.002s

[17:28:20] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML

[17:28:20] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.024s

[17:28:20] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge

[17:28:20] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0

[17:28:20] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.031s

[17:28:20] [Client thread/TRACE] [hgm/hgm]: Sending event FMLPreInitializationEvent to mod hgm

[17:28:20] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json

[17:28:20] [Client thread/TRACE] [hgm/hgm]: Sent event FMLPreInitializationEvent to mod hgm

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Hazardous Gems Mod took 0.045s

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0.101s

[17:28:20] [Client thread/INFO] [FML/]: Applying holder lookups

[17:28:20] [Client thread/INFO] [FML/]: Holder lookups applied

[17:28:20] [Client thread/INFO] [FML/]: Injecting itemstacks

[17:28:20] [Client thread/INFO] [FML/]: Itemstack injection complete

[17:28:20] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.010s

[17:28:20] [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.1623",

    "latest": "11.14.4.1577",

    "latest-1.7.10": "10.13.2.1343",

    "recommended": "11.14.4.1563"

  }

}

[17:28:20] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: UP_TO_DATE Target: null

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 1.965s

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.006s

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.004s

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.008s

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.011s

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.000s

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.010s

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.001s

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s

[17:28:22] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_pick#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_axe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_spade#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_hoe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_pick#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_axe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_spade#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_hoe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_pick#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_axe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_spade#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_hoe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_pick#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_axe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_spade#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_hoe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_pick#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_axe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_spade#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_hoe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_pick#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_axe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_spade#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_hoe#inventory', trying to load the variant from the blockstate json

[17:28:24] [Client thread/INFO] [FML/]: Max texture size: 16384

[17:28:24] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.001s

[17:28:24] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.004s

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_axe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_axe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_hoe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_hoe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_spade#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_pick#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_spade#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_pick#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_spade#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_pick#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_hoe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_pick#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_pick#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_axe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_spade#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_axe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_axe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_spade#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_hoe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_axe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_spade#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_pick#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_hoe#inventory not found

[17:28:25] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_hoe#inventory not found

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 2.263s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 2.373s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.003s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0.260s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.175s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 2.818s

[17:28:25] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp

[17:28:25] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s

[17:28:25] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML

[17:28:25] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.000s

[17:28:25] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge

[17:28:25] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.001s

[17:28:25] [Client thread/TRACE] [hgm/hgm]: Sending event FMLInitializationEvent to mod hgm

[17:28:25] [Client thread/TRACE] [hgm/hgm]: Sent event FMLInitializationEvent to mod hgm

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Hazardous Gems Mod took 0.010s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.012s

[17:28:25] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp

[17:28:25] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp

[17:28:25] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.003s

[17:28:25] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML

[17:28:25] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML

[17:28:25] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.000s

[17:28:25] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge

[17:28:25] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge

[17:28:25] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s

[17:28:25] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod hgm

[17:28:25] [Client thread/TRACE] [hgm/hgm]: Sending event IMCEvent to mod hgm

[17:28:25] [Client thread/TRACE] [hgm/hgm]: Sent event IMCEvent to mod hgm

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Hazardous Gems Mod took 0.000s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.004s

[17:28:25] [Client thread/INFO] [FML/]: Injecting itemstacks

[17:28:25] [Client thread/INFO] [FML/]: Itemstack injection complete

[17:28:25] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp

[17:28:25] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.001s

[17:28:25] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML

[17:28:25] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.006s

[17:28:25] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge

[17:28:25] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.074s

[17:28:25] [Client thread/TRACE] [hgm/hgm]: Sending event FMLPostInitializationEvent to mod hgm

[17:28:25] [Client thread/TRACE] [hgm/hgm]: Sent event FMLPostInitializationEvent to mod hgm

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Hazardous Gems Mod took 0.001s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.082s

[17:28:25] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp

[17:28:25] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.000s

[17:28:25] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML

[17:28:25] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s

[17:28:25] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge

[17:28:25] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  14: RecipeEntry("Before", UNKNOWN, )

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  13: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  12: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  11: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  10: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  9: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  8: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  7: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  6: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  5: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  4: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless

[17:28:25] [Client thread/DEBUG] [FML/Forge]:  1: RecipeEntry("After", UNKNOWN, )

[17:28:25] [Client thread/DEBUG] [FML/Forge]: Sorting recipies

[17:28:25] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.007s

[17:28:25] [Client thread/TRACE] [hgm/hgm]: Sending event FMLLoadCompleteEvent to mod hgm

[17:28:25] [Client thread/TRACE] [hgm/hgm]: Sent event FMLLoadCompleteEvent to mod hgm

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Hazardous Gems Mod took 0.000s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.008s

[17:28:25] [Client thread/DEBUG] [FML/]: Freezing block and item id maps

[17:28:25] [Client thread/DEBUG] [FML/]: Registry consistency check successful

[17:28:25] [Client thread/DEBUG] [FML/]: Registry consistency check successful

[17:28:25] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.000s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.017s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.014s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Hazardous Gems Mod took 0.001s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.007s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.000s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.003s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.012s

[17:28:25] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.022s

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_pick#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_axe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_spade#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_red_hoe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_pick#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_axe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_spade#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_blue_hoe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_pick#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_axe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_spade#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_green_hoe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_pick#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_axe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_spade#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_yellow_hoe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_pick#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_axe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_spade#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_purple_hoe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_pick#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_axe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_spade#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/DEBUG] [FML/]: Item json isn't found for 'hgm:gem_black_hoe#inventory', trying to load the variant from the blockstate json

[17:28:28] [Client thread/INFO] [FML/]: Max texture size: 16384

[17:28:28] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.310s

[17:28:28] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0.305s

[17:28:28] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.041s

[17:28:28] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.064s

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_axe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_axe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_hoe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_hoe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_spade#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_pick#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_spade#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_pick#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_spade#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_pick#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_hoe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_pick#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_pick#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_green_axe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_spade#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_axe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_purple_axe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_spade#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_blue_hoe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_axe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_red_spade#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_pick#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_black_hoe#inventory not found

[17:28:29] [Client thread/ERROR] [FML/]: Model definition for location hgm:gem_yellow_hoe#inventory not found

[17:28:29] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 3.313s

[17:28:29] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 3.314s

[17:28:29] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 3.345s

[17:28:29] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one

[17:28:29] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one

[17:28:29] [Client thread/DEBUG] [Hazardous Gems Mod/]: Mod Hazardous Gems Mod is missing a pack.mcmeta file, substituting a dummy one

[17:28:29] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 11.726s

[17:28:34] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp

[17:28:34] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp

[17:28:34] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0.001s

[17:28:34] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML

[17:28:34] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML

[17:28:34] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0.000s

[17:28:34] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge

[17:28:34] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge

[17:28:34] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0.000s

[17:28:34] [server thread/TRACE] [hgm/hgm]: Sending event FMLServerAboutToStartEvent to mod hgm

[17:28:34] [server thread/TRACE] [hgm/hgm]: Sent event FMLServerAboutToStartEvent to mod hgm

[17:28:34] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Hazardous Gems Mod took 0.000s

[17:28:34] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0.002s

[17:28:34] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance

[17:28:34] [server thread/DEBUG] [FML/]: Registry consistency check successful

[17:28:34] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_red: 198 (init) -> 204 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_yellow: 201 (init) -> 205 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_purple: 202 (init) -> 206 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_black: 203 (init) -> 209 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_blue: 199 (init) -> 207 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed block id mismatch hgm:gem_block_green: 200 (init) -> 208 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_sword: 4097 (init) -> 4104 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_red: 198 (init) -> 204 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_blue_sword: 4103 (init) -> 4120 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_pick: 4098 (init) -> 4108 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_green_axe: 4111 (init) -> 4118 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_yellow: 201 (init) -> 205 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_blue_pick: 4104 (init) -> 4105 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_hoe: 4101 (init) -> 4106 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_blue_axe: 4105 (init) -> 4126 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_yellow_pick: 4116 (init) -> 4132 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_black_spade: 4130 (init) -> 4133 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_powered_pick: 4133 (init) -> 4134 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_purple: 202 (init) -> 206 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_green_spade: 4112 (init) -> 4114 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_black: 4126 (init) -> 4101 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_blue: 4102 (init) -> 4097 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_black: 203 (init) -> 209 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_yellow: 4114 (init) -> 4099 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_powered: 4132 (init) -> 4103 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_spade: 4100 (init) -> 4116 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_blue_spade: 4106 (init) -> 4111 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_yellow_spade: 4118 (init) -> 4130 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_purple: 4120 (init) -> 4100 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_red_axe: 4099 (init) -> 4112 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_blue: 199 (init) -> 207 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_green: 4108 (init) -> 4098 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Fixed item id mismatch hgm:gem_block_green: 200 (init) -> 208 (map).

[17:28:34] [server thread/DEBUG] [FML/]: Registry consistency check successful

[17:28:34] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp

[17:28:34] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp

[17:28:34] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.002s

[17:28:34] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML

[17:28:34] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML

[17:28:34] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s

[17:28:34] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge

[17:28:34] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge

[17:28:34] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.001s

[17:28:34] [server thread/TRACE] [hgm/hgm]: Sending event FMLModIdMappingEvent to mod hgm

[17:28:34] [server thread/TRACE] [hgm/hgm]: Sent event FMLModIdMappingEvent to mod hgm

[17:28:34] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Hazardous Gems Mod took 0.000s

[17:28:34] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.003s

[17:28:34] [server thread/INFO] [FML/]: Applying holder lookups

[17:28:34] [server thread/INFO] [FML/]: Holder lookups applied

[17:28:34] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world

[17:28:34] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava

[17:28:34] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water

[17:28:34] [server thread/INFO] [FML/]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@ac297b1)

[17:28:34] [server thread/INFO] [FML/]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@ac297b1)

[17:28:34] [server thread/INFO] [FML/]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@ac297b1)

[17:28:35] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp

[17:28:35] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp

[17:28:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0.002s

[17:28:35] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML

[17:28:35] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML

[17:28:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0.000s

[17:28:35] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge

[17:28:35] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge

[17:28:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0.003s

[17:28:35] [server thread/TRACE] [hgm/hgm]: Sending event FMLServerStartingEvent to mod hgm

[17:28:35] [server thread/TRACE] [hgm/hgm]: Sent event FMLServerStartingEvent to mod hgm

[17:28:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Hazardous Gems Mod took 0.001s

[17:28:35] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0.006s

[17:28:35] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp

[17:28:35] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp

[17:28:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0.000s

[17:28:35] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML

[17:28:35] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML

[17:28:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0.001s

[17:28:35] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge

[17:28:35] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge

[17:28:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0.000s

[17:28:35] [server thread/TRACE] [hgm/hgm]: Sending event FMLServerStartedEvent to mod hgm

[17:28:35] [server thread/TRACE] [hgm/hgm]: Sent event FMLServerStartedEvent to mod hgm

[17:28:35] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Hazardous Gems Mod took 0.000s

[17:28:35] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0.001s

[17:28:37] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]:  Next: HELLO

[17:28:37] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]:  Next: HELLO

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO

[17:28:37] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO

[17:28:37] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]:  Next: HELLO

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]:  Next: WAITINGSERVERDATA

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO

[17:28:37] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]:  Next: WAITINGCACK

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]:  Next: PENDINGCOMPLETE

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]:  Next: COMPLETE

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]:  Next: COMPLETE

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]:  Next: DONE

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE

[17:28:37] [Netty Local Client IO #0/DEBUG] [FML/]:  Next: DONE

[17:28:37] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE

[17:28:37] [Netty Server IO #1/DEBUG] [FML/]:  Next: DONE

[17:28:37] [server thread/INFO] [FML/]: [server thread] Server side modded connection established

[17:28:37] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0

[17:28:45] [server thread/ERROR] [FML/]: Exception caught during firing event net.minecraftforge.event.world.BlockEvent$HarvestDropsEvent@71a77fb9:

java.lang.NullPointerException

at com.biohazard.gems.GemEventHandler.infusedPick(GemEventHandler.java:23) ~[GemEventHandler.class:?]

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_GemEventHandler_infusedPick_HarvestDropsEvent.invoke(.dynamic) ~[?:?]

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55) ~[ASMEventHandler.class:?]

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?]

at net.minecraftforge.event.ForgeEventFactory.fireBlockHarvesting(ForgeEventFactory.java:190) [ForgeEventFactory.class:?]

at net.minecraft.block.Block.dropBlockAsItemWithChance(Block.java:611) [block.class:?]

at net.minecraft.block.Block.dropBlockAsItem(Block.java:597) [block.class:?]

at net.minecraft.block.BlockDoublePlant.checkAndDropBlock(BlockDoublePlant.java:95) [blockDoublePlant.class:?]

at net.minecraft.block.BlockBush.updateTick(BlockBush.java:57) [blockBush.class:?]

at net.minecraft.block.Block.randomTick(Block.java:528) [block.class:?]

at net.minecraft.world.WorldServer.updateBlocks(WorldServer.java:467) [WorldServer.class:?]

at net.minecraft.world.WorldServer.tick(WorldServer.java:228) [WorldServer.class:?]

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764) [MinecraftServer.class:?]

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) [MinecraftServer.class:?]

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) [integratedServer.class:?]

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?]

at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51]

[17:28:45] [server thread/ERROR] [FML/]: Index: 1 Listeners:

[17:28:45] [server thread/ERROR] [FML/]: 0: NORMAL

[17:28:45] [server thread/ERROR] [FML/]: 1: ASM: com.biohazard.gems.GemEventHandler@746f1505 infusedPick(Lnet/minecraftforge/event/world/BlockEvent$HarvestDropsEvent;)V

[17:28:45] [Client thread/INFO] [sTDOUT/]: [net.minecraft.init.Bootstrap:printToSYSOUT:663]: ---- Minecraft Crash Report ----

// You should try our sister game, Minceraft!

 

Time: 12/12/15 5:28 PM

Description: Exception ticking world

 

java.lang.NullPointerException: Exception ticking world

at com.biohazard.gems.GemEventHandler.infusedPick(GemEventHandler.java:23)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_GemEventHandler_infusedPick_HarvestDropsEvent.invoke(.dynamic)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55)

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)

at net.minecraftforge.event.ForgeEventFactory.fireBlockHarvesting(ForgeEventFactory.java:190)

at net.minecraft.block.Block.dropBlockAsItemWithChance(Block.java:611)

at net.minecraft.block.Block.dropBlockAsItem(Block.java:597)

at net.minecraft.block.BlockDoublePlant.checkAndDropBlock(BlockDoublePlant.java:95)

at net.minecraft.block.BlockBush.updateTick(BlockBush.java:57)

at net.minecraft.block.Block.randomTick(Block.java:528)

at net.minecraft.world.WorldServer.updateBlocks(WorldServer.java:467)

at net.minecraft.world.WorldServer.tick(WorldServer.java:228)

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)

at java.lang.Thread.run(Thread.java:745)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at com.biohazard.gems.GemEventHandler.infusedPick(GemEventHandler.java:23)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_GemEventHandler_infusedPick_HarvestDropsEvent.invoke(.dynamic)

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:55)

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)

at net.minecraftforge.event.ForgeEventFactory.fireBlockHarvesting(ForgeEventFactory.java:190)

at net.minecraft.block.Block.dropBlockAsItemWithChance(Block.java:611)

at net.minecraft.block.Block.dropBlockAsItem(Block.java:597)

at net.minecraft.block.BlockDoublePlant.checkAndDropBlock(BlockDoublePlant.java:95)

at net.minecraft.block.BlockBush.updateTick(BlockBush.java:57)

at net.minecraft.block.Block.randomTick(Block.java:528)

at net.minecraft.world.WorldServer.updateBlocks(WorldServer.java:467)

at net.minecraft.world.WorldServer.tick(WorldServer.java:228)

 

-- Affected level --

Details:

Level name: New World

All players: 1 total; [EntityPlayerMP['Player35'/381, l='New World', x=233.62, y=63.00, z=375.77]]

Chunk stats: ServerChunkCache: 892 Drop: 0

Level seed: -1814084668358052926

Level generator: ID 00 - default, ver 1. Features enabled: true

Level generator options:

Level spawn location: 176.00,64.00,248.00 - World: (176,64,248), Chunk: (at 0,4,8 in 11,15; contains blocks 176,0,240 to 191,255,255), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)

Level time: 69656 game time, 69656 day time

Level dimension: 0

Level storage version: 0x04ABD - Anvil

Level weather: Rain time: 68790 (now: false), thunder time: 9156 (now: false)

Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true

Stacktrace:

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:764)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)

at java.lang.Thread.run(Thread.java:745)

 

-- System Details --

Details:

Minecraft Version: 1.8

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.8.0_51, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 766365064 bytes (730 MB) / 1354760192 bytes (1292 MB) up to 3817865216 bytes (3641 MB)

JVM Flags: 0 total;

IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94

FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.4.1563 4 mods loaded, 4 mods active

States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)

UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.4.1563.jar)

UCHIJAAAA Forge{11.14.4.1563} [Minecraft Forge] (forgeSrc-1.8-11.14.4.1563.jar)

UCHIJAAAA hgm{1.0} [Hazardous Gems Mod] (modid-1.0.jar)

Loaded coremods (and transformers):

GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.

Profiler Position: N/A (disabled)

Player Count: 1 / 8; [EntityPlayerMP['Player35'/381, l='New World', x=233.62, y=63.00, z=375.77]]

Type: Integrated Server (map_client.txt)

Is Modded: Definitely; Client brand changed to 'fml,forge'

[17:28:45] [Client thread/INFO] [sTDOUT/]: [net.minecraft.init.Bootstrap:printToSYSOUT:663]: #@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2015-12-12_17.28.45-server.txt

[17:28:45] [Client thread/INFO] [FML/]: Waiting for the server to terminate/save.

[17:28:45] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World

[17:28:46] [server thread/INFO] [FML/]: Unloading dimension 0

[17:28:46] [server thread/INFO] [FML/]: Unloading dimension -1

[17:28:46] [server thread/INFO] [FML/]: Unloading dimension 1

[17:28:46] [server thread/DEBUG] [FML/]: Reverting to frozen data state.

[17:28:46] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp

[17:28:46] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp

[17:28:46] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.002s

[17:28:46] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML

[17:28:46] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML

[17:28:46] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s

[17:28:46] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge

[17:28:46] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge

[17:28:46] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.001s

[17:28:46] [server thread/TRACE] [hgm/hgm]: Sending event FMLModIdMappingEvent to mod hgm

[17:28:46] [server thread/TRACE] [hgm/hgm]: Sent event FMLModIdMappingEvent to mod hgm

[17:28:46] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Hazardous Gems Mod took 0.000s

[17:28:46] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.003s

[17:28:46] [server thread/INFO] [FML/]: Applying holder lookups

[17:28:46] [server thread/INFO] [FML/]: Holder lookups applied

[17:28:46] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStoppedEvent to mod mcp

[17:28:46] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStoppedEvent to mod mcp

[17:28:46] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Coder Pack took 0.000s

[17:28:46] [server thread/TRACE] [FML/FML]: Sending event FMLServerStoppedEvent to mod FML

[17:28:46] [server thread/TRACE] [FML/FML]: Sent event FMLServerStoppedEvent to mod FML

[17:28:46] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Forge Mod Loader took 0.000s

[17:28:46] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStoppedEvent to mod Forge

[17:28:46] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStoppedEvent to mod Forge

[17:28:46] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Minecraft Forge took 0.000s

[17:28:46] [server thread/TRACE] [hgm/hgm]: Sending event FMLServerStoppedEvent to mod hgm

[17:28:46] [server thread/TRACE] [hgm/hgm]: Sent event FMLServerStoppedEvent to mod hgm

[17:28:46] [server thread/DEBUG] [FML/]: Bar Step: ServerStopped - Hazardous Gems Mod took 0.000s

[17:28:46] [server thread/DEBUG] [FML/]: Bar Finished: ServerStopped took 0.001s

[17:28:46] [server thread/INFO] [FML/]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.

[17:28:46] [Client thread/INFO] [FML/]: Server terminated.

 

 

Link to comment
Share on other sites

I will send you to documentation (yes, read the comment in BlockEvent$HarvestDropsEvent class). :D

Thanks, i dont know why that wasnt my first move, i now can see that the error is being thrown for the Player, not the item. Thanks alot, it is all working now.. Except it is still dropping cobblestone, but i feel as if it is my fault, andi  can hanlde it on my own. Thanks again!  :) :)

Link to comment
Share on other sites

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



×
×
  • Create New...

Important Information

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