Posted November 17, 201410 yr I made a recipe that gives more rails when crafting them, and it worked when play-testing in eclipse, but when I used my mod with minecraft without any other mods installed, the recipe gives the old amount: //CraftingManager.getInstance().getRecipeList().remove(Blocks.rail); //CraftingManager.getInstance().getRecipeList().remove(Blocks.golden_rail); GameRegistry.addShapedRecipe(new ItemStack(Blocks.rail, 32), "Z Z", "ZYZ", "Z Z", 'Z', Items.iron_ingot, 'Y', Items.stick); GameRegistry.addShapedRecipe(new ItemStack(Blocks.golden_rail, 16), "Z Z", "ZYZ", "ZXZ", 'Z', Items.gold_ingot, 'Y', Items.stick, 'X', Items.redstone); I have two lines that I excluded using "//", but even with two lines included it still worked inside eclipse, but didn't work outside eclipse.
November 17, 201410 yr Try this instead: //CraftingManager.getInstance().getRecipeList().remove(Blocks.rail); //CraftingManager.getInstance().getRecipeList().remove(Blocks.golden_rail); GameRegistry.addShapedRecipe(new ItemStack(Blocks.rail, 32), new Object[]{ "Z Z", "ZYZ", "Z Z", 'Z', Items.iron_ingot, 'Y', Items.stick }); GameRegistry.addShapedRecipe(new ItemStack(Blocks.golden_rail, 16), new Object[]{ "Z Z", "ZYZ", "ZXZ", 'Z', Items.gold_ingot, 'Y', Items.stick, 'X', Items.redstone }); And if not post your mod logs.
November 17, 201410 yr All you did was wrap his parameters in a new Object[] {} which is already done by the compiler. http://www.minecraftforge.net/forum/index.php/topic,25202.msg128448.html#msg128448 Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
November 17, 201410 yr Author Try this instead: //CraftingManager.getInstance().getRecipeList().remove(Blocks.rail); //CraftingManager.getInstance().getRecipeList().remove(Blocks.golden_rail); GameRegistry.addShapedRecipe(new ItemStack(Blocks.rail, 32), new Object[]{ "Z Z", "ZYZ", "Z Z", 'Z', Items.iron_ingot, 'Y', Items.stick }); GameRegistry.addShapedRecipe(new ItemStack(Blocks.golden_rail, 16), new Object[]{ "Z Z", "ZYZ", "ZXZ", 'Z', Items.gold_ingot, 'Y', Items.stick, 'X', Items.redstone }); And if not post your mod logs. It had the same effect, it worked in Eclipse, but not as a published mod. Here's the console in eclipse: [15:33:28] [main/INFO] [GradleStart]: No arguments specified, assuming client. [15:33:28] [main/INFO] [GradleStart]: Extra: [] [15:33:28] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --accessToken, {REDACTED}, --assetIndex, 1.7.10, --assetsDir, C:/Users/Dragon543/.gradle/caches/minecraft/assets, --version, 1.7.10] [15:33:28] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [15:33:28] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [15:33:28] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [15:33:29] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1230 for Minecraft 1.7.10 loading [15:33:29] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_71, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre7 [15:33:29] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [15:33:29] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [15:33:29] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [15:33:29] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [15:33:29] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [15:33:29] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [15:33:30] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [15:33:37] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [15:33:37] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [15:33:37] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [15:33:40] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [15:33:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [15:33:40] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [15:33:47] [main/INFO]: Setting user: Player546 [15:33:54] [Client thread/INFO]: LWJGL Version: 2.9.1 [15:33:57] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [15:33:57] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1230 Initialized [15:33:57] [Client thread/INFO] [FML]: Replaced 182 ore recipies [15:33:58] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [15:33:59] [Client thread/INFO] [FML]: Searching C:\Users\Dragon543\Games\PC Gaming\Minecraft\Forge Modding\Forge Mods\eclipse\mods for mods [15:34:12] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [15:34:14] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, dragonsextension] at CLIENT [15:34:14] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, dragonsextension] at SERVER [15:34:15] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Dragon's Extension [15:34:15] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [15:34:15] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [15:34:15] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [15:34:18] [Client thread/INFO] [FML]: Applying holder lookups [15:34:18] [Client thread/INFO] [FML]: Holder lookups applied [15:34:19] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [15:34:19] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [15:34:19] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [15:34:19] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [15:34:20] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [15:34:20] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [15:34:20] [sound Library Loader/INFO]: Sound engine started [15:34:29] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [15:34:30] [Client thread/INFO]: Created: 256x256 textures/items-atlas [15:34:30] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [15:34:30] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Dragon's Extension [15:34:31] [Client thread/INFO]: Created: 256x256 textures/items-atlas [15:34:32] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [15:34:32] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [15:34:32] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [15:34:32] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [15:34:32] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [15:34:32] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [15:34:32] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [15:34:32] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [15:34:32] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [15:34:33] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [15:34:33] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [15:34:33] [sound Library Loader/INFO]: Sound engine started [15:34:45] [Client thread/INFO]: Deleting level New World- [15:34:45] [Client thread/INFO]: Attempt 1... [15:34:49] [server thread/INFO]: Starting integrated minecraft server version 1.7.10 [15:34:49] [server thread/INFO]: Generating keypair [15:34:50] [server thread/INFO]: Converting map! [15:34:50] [server thread/INFO]: Scanning folders... [15:34:50] [server thread/INFO]: Total conversion count is 0 [15:34:51] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [15:34:52] [server thread/INFO] [FML]: Applying holder lookups [15:34:52] [server thread/INFO] [FML]: Holder lookups applied [15:34:54] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@5135e9a5) [15:34:54] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@5135e9a5) [15:34:54] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@5135e9a5) [15:34:54] [server thread/INFO]: Preparing start region for level 0 [15:34:55] [server thread/INFO]: Preparing spawn area: 0% [15:34:57] [server thread/INFO]: Preparing spawn area: 3% [15:34:58] [server thread/INFO]: Preparing spawn area: 4% [15:34:59] [server thread/INFO]: Preparing spawn area: 5% [15:35:00] [server thread/INFO]: Preparing spawn area: 7% [15:35:01] [server thread/INFO]: Preparing spawn area: 9% [15:35:02] [server thread/INFO]: Preparing spawn area: 12% [15:35:03] [server thread/INFO]: Preparing spawn area: 16% [15:35:04] [server thread/INFO]: Preparing spawn area: 19% [15:35:05] [server thread/INFO]: Preparing spawn area: 23% [15:35:06] [server thread/INFO]: Preparing spawn area: 27% [15:35:07] [server thread/INFO]: Preparing spawn area: 31% [15:35:08] [server thread/INFO]: Preparing spawn area: 34% [15:35:09] [server thread/INFO]: Preparing spawn area: 39% [15:35:10] [server thread/INFO]: Preparing spawn area: 43% [15:35:11] [server thread/INFO]: Preparing spawn area: 48% [15:35:12] [server thread/INFO]: Preparing spawn area: 51% [15:35:13] [server thread/INFO]: Preparing spawn area: 56% [15:35:14] [server thread/INFO]: Preparing spawn area: 61% [15:35:15] [server thread/INFO]: Preparing spawn area: 67% [15:35:16] [server thread/INFO]: Preparing spawn area: 74% [15:35:17] [server thread/INFO]: Preparing spawn area: 80% [15:35:18] [server thread/INFO]: Preparing spawn area: 87% [15:35:19] [server thread/INFO]: Preparing spawn area: 95% [15:35:20] [server thread/INFO]: Changing view distance to 4, from 10 [15:35:22] [Netty Client IO #0/INFO] [FML]: Server protocol version 1 [15:35:22] [Netty IO #1/INFO] [FML]: Client protocol version 1 [15:35:22] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] [15:35:22] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [15:35:22] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER [15:35:23] [server thread/INFO] [FML]: [server thread] Server side modded connection established [15:35:23] [server thread/INFO]: Player546[local:E:bbbf4018] logged in with entity id 91 at (-232.5, 64.0, 245.5) [15:35:23] [server thread/INFO]: Player546 joined the game [15:35:23] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established [15:35:25] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3933ms behind, skipping 78 tick(s) [15:35:37] [Client thread/INFO]: Warning: Clientside chunk ticking took 411 ms [15:35:44] [server thread/INFO]: Player546 has just earned the achievement [Taking Inventory] [15:35:46] [Client thread/INFO]: [CHAT] Player546 has just earned the achievement [Taking Inventory] [15:35:52] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 7114ms behind, skipping 142 tick(s) [15:36:10] [server thread/INFO]: Saving and pausing game... [15:36:10] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:36:11] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:36:11] [server thread/INFO]: Saving chunks for level 'New World'/The End [15:36:13] [server thread/INFO]: Stopping server [15:36:13] [server thread/INFO]: Saving players [15:36:13] [server thread/INFO]: Saving worlds [15:36:13] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:36:13] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:36:13] [server thread/INFO]: Saving chunks for level 'New World'/The End [15:36:16] [server thread/INFO] [FML]: Unloading dimension 0 [15:36:16] [server thread/INFO] [FML]: Unloading dimension -1 [15:36:16] [server thread/INFO] [FML]: Unloading dimension 1 [15:36:16] [server thread/INFO] [FML]: Applying holder lookups [15:36:16] [server thread/INFO] [FML]: Holder lookups applied [15:36:17] [Client thread/INFO]: Stopping! [15:36:17] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [15:36:17] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [15:36:18] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [15:36:18] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
November 18, 201410 yr Author All you did was wrap his parameters in a new Object[] {} which is already done by the compiler. http://www.minecraftforge.net/forum/index.php/topic,25202.msg128448.html#msg128448 I looked at your link and tried it: // Get all vanilla recipes... List recipes = CraftingManager.getInstance().getRecipeList(); Iterator recipe = recipes.iterator(); // Cycle through and find the item we want to change... while(recipe.hasNext()) { ItemStack it = ((IRecipe) recipe.next()).getRecipeOutput(); if(it.getItem() == Blocks.rail) { recipe.remove(); } } I get "it.getItem() == Blocks.rail" underlined in red though, because it's blocks instead of items, I don't know what to use here.
November 18, 201410 yr I get "it.getItem() == Blocks.rail" underlined in red though, because it's blocks instead of items, I don't know what to use here. Item.getItemFromBlock(some_block) Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
November 18, 201410 yr Author I get "it.getItem() == Blocks.rail" underlined in red though, because it's blocks instead of items, I don't know what to use here. Item.getItemFromBlock(some_block) Okay, I changed it to this: // Get all vanilla recipes... List recipes = CraftingManager.getInstance().getRecipeList(); Iterator recipe = recipes.iterator(); // Cycle through and find the item we want to change... while(recipe.hasNext()) { ItemStack it = ((IRecipe) recipe.next()).getRecipeOutput(); if(it.getItem() == Item.getItemFromBlock(Blocks.rail)) { recipe.remove(); } if(it.getItem() == Item.getItemFromBlock(Blocks.golden_rail)) { recipe.remove(); } } I got this error: [18:55:20] [main/INFO] [GradleStart]: No arguments specified, assuming client. [18:55:21] [main/INFO] [GradleStart]: Extra: [] [18:55:21] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --accessToken, {REDACTED}, --assetIndex, 1.7.10, --assetsDir, C:/Users/Dragon543/.gradle/caches/minecraft/assets, --version, 1.7.10] [18:55:21] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [18:55:21] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [18:55:21] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [18:55:21] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1230 for Minecraft 1.7.10 loading [18:55:21] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_71, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre7 [18:55:21] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [18:55:21] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [18:55:21] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [18:55:21] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [18:55:21] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [18:55:21] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [18:55:22] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [18:55:29] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [18:55:29] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [18:55:29] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [18:55:34] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [18:55:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [18:55:34] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [18:55:40] [main/INFO]: Setting user: Player171 [18:55:46] [Client thread/INFO]: LWJGL Version: 2.9.1 [18:55:49] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [18:55:49] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1230 Initialized [18:55:49] [Client thread/INFO] [FML]: Replaced 182 ore recipies [18:55:49] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [18:55:50] [Client thread/INFO] [FML]: Searching C:\Users\Dragon543\Games\PC Gaming\Minecraft\Forge Modding\Forge Mods\eclipse\mods for mods [18:56:00] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [18:56:02] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, dragonsextension] at CLIENT [18:56:02] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, dragonsextension] at SERVER [18:56:03] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Dragon's Extension [18:56:03] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [18:56:03] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [18:56:04] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [18:56:04] [Client thread/INFO] [FML]: Applying holder lookups [18:56:04] [Client thread/INFO] [FML]: Holder lookups applied [18:56:04] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from PREINITIALIZATION to INITIALIZATION. Loading cannot continue [18:56:04] [Client thread/ERROR] [FML]: mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized FML{7.10.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized dragonsextension{1.0} [Dragon's Extension] (bin) Unloaded->Constructed->Errored [18:56:04] [Client thread/ERROR] [FML]: The following problems were captured during this phase [18:56:04] [Client thread/ERROR] [FML]: Caught exception from dragonsextension java.lang.NullPointerException at com.dragonsextension.main.DragonsExtensionCrafting.addCraftingRecipes(DragonsExtensionCrafting.java:58) ~[bin/:?] at com.dragonsextension.main.DragonsExtensionCrafting.mainRegistry(DragonsExtensionCrafting.java:21) ~[bin/:?] at com.dragonsextension.main.MainRegistry.PreLoad(MainRegistry.java:47) ~[bin/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) ~[forgeSrc-1.7.10-10.13.2.1230.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) ~[forgeSrc-1.7.10-10.13.2.1230.jar:?] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) ~[forgeSrc-1.7.10-10.13.2.1230.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) [LoadController.class:?] at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513) [Loader.class:?] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71] at GradleStart.bounce(GradleStart.java:107) [start/:?] at GradleStart.startClient(GradleStart.java:100) [start/:?] at GradleStart.main(GradleStart.java:55) [start/:?] [18:56:04] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // Sorry Time: 11/17/14 6:56 PM Description: Initializing game java.lang.NullPointerException: Initializing game at com.dragonsextension.main.DragonsExtensionCrafting.addCraftingRecipes(DragonsExtensionCrafting.java:58) at com.dragonsextension.main.DragonsExtensionCrafting.mainRegistry(DragonsExtensionCrafting.java:21) at com.dragonsextension.main.MainRegistry.PreLoad(MainRegistry.java:47) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239) at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) at net.minecraft.client.Minecraft.run(Minecraft.java:931) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at GradleStart.bounce(GradleStart.java:107) at GradleStart.startClient(GradleStart.java:100) at GradleStart.main(GradleStart.java:55) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at com.dragonsextension.main.DragonsExtensionCrafting.addCraftingRecipes(DragonsExtensionCrafting.java:58) at com.dragonsextension.main.DragonsExtensionCrafting.mainRegistry(DragonsExtensionCrafting.java:21) at com.dragonsextension.main.MainRegistry.PreLoad(MainRegistry.java:47) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239) at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.run(Minecraft.java:931) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at GradleStart.bounce(GradleStart.java:107) at GradleStart.startClient(GradleStart.java:100) at GradleStart.main(GradleStart.java:55) -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 8.1 (amd64) version 6.3 Java Version: 1.7.0_71, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 966482600 bytes (921 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.05 FML v7.10.85.1230 Minecraft Forge 10.13.2.1230 4 mods loaded, 4 mods active mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized FML{7.10.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized dragonsextension{1.0} [Dragon's Extension] (bin) Unloaded->Constructed->Errored Launched Version: 1.7.10 LWJGL: 2.9.1 OpenGL: AMD Radeon HD 8240 GL version 4.3.12618 Compatibility Profile Context 13.251.0.0, ATI Technologies Inc. GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported. Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: [] Current Language: English (US) Profiler Position: N/A (disabled) Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Anisotropic Filtering: Off (1) [18:56:05] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Dragon543\Games\PC Gaming\Minecraft\Forge Modding\Forge Mods\eclipse\.\crash-reports\crash-2014-11-17_18.56.04-client.txt
November 18, 201410 yr Having just now started poking at the removal of vanilla recipes... You can't remove a recipe by its output. You need to find ShapedRecipes object that has a getRecipeOutput().getItem() that matches the result you're trying to remove. Note, this might not be the best way, but here's what I'm trying now: (And I'm sure that if I'm wrong, someone will step in and correct me) ArrayList list = (ArrayList) CraftingManager.getInstance().getRecipeList(); //get all recipes IRecipe recipe; int recipesFound = 0; for(int i=0; i<list.size(); i++) { //loop through them Object o =list.get(i); if(o instanceof IRecipe) { recipe = (IRecipe) o; if(recipe.getRecipeOutput() != null) { //your missing this line. Sometimes a result can be null (no, I don't know why) System.out.println(i + ": " + recipe.getRecipeOutput().getItem().getUnlocalizedName()); if(recipe.getRecipeOutput().getItem() == Items.stone_pickaxe) { //if the item result is the item result I am looking for list.remove(recipe); //remove it } } } } This is compiled and running along side other mods: Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
November 18, 201410 yr Author Having just now started poking at the removal of vanilla recipes... You can't remove a recipe by its output. You need to find ShapedRecipes object that has a getRecipeOutput().getItem() that matches the result you're trying to remove. Note, this might not be the best way, but here's what I'm trying now: (And I'm sure that if I'm wrong, someone will step in and correct me) ArrayList list = (ArrayList) CraftingManager.getInstance().getRecipeList(); //get all recipes IRecipe recipe; int recipesFound = 0; for(int i=0; i<list.size(); i++) { //loop through them Object o =list.get(i); if(o instanceof IRecipe) { recipe = (IRecipe) o; if(recipe.getRecipeOutput() != null) { //your missing this line. Sometimes a result can be null (no, I don't know why) System.out.println(i + ": " + recipe.getRecipeOutput().getItem().getUnlocalizedName()); if(recipe.getRecipeOutput().getItem() == Items.stone_pickaxe) { //if the item result is the item result I am looking for list.remove(recipe); //remove it } } } } This is compiled and running along side other mods: That worked, but only for rails, golden rails still works in eclispe, but not as a published mod. Here's my new code: ArrayList list = (ArrayList) CraftingManager.getInstance().getRecipeList(); //get all recipes IRecipe recipe; int recipesFound = 0; for(int i=0; i<list.size(); i++) { //loop through them Object o =list.get(i); if(o instanceof IRecipe) { recipe = (IRecipe) o; if(recipe.getRecipeOutput() != null) { //your missing this line. Sometimes a result can be null (no, I don't know why) System.out.println(i + ": " + recipe.getRecipeOutput().getItem().getUnlocalizedName()); if(recipe.getRecipeOutput().getItem() == Item.getItemFromBlock(Blocks.golden_rail) || recipe.getRecipeOutput().getItem() == Item.getItemFromBlock(Blocks.rail)) { //if the item result is the item result I am looking for list.remove(recipe); //remove it } } } } GameRegistry.addShapedRecipe(new ItemStack(Blocks.rail, 32), "Z Z", "ZYZ", "Z Z", 'Z', Items.iron_ingot, 'Y', Items.stick); GameRegistry.addShapedRecipe(new ItemStack(Blocks.golden_rail, 16), "Z Z", "ZYZ", "ZXZ", 'Z', Items.gold_ingot, 'Y', Items.stick, 'X', Items.redstone);
November 18, 201410 yr Does the gold rail show up in the console log anywhere? It should: 192: net.minecraft.item.ItemBlock@c94504 -- tile.goldenRail Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
November 18, 201410 yr Author Does the gold rail show up in the console log anywhere? It should: 192: net.minecraft.item.ItemBlock@c94504 -- tile.goldenRail No, I searched for it and couldn't find it: [21:27:37] [main/INFO] [GradleStart]: No arguments specified, assuming client. [21:27:37] [main/INFO] [GradleStart]: Extra: [] [21:27:37] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --accessToken, {REDACTED}, --assetIndex, 1.7.10, --assetsDir, C:/Users/Dragon543/.gradle/caches/minecraft/assets, --version, 1.7.10] [21:27:37] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [21:27:37] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [21:27:37] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [21:27:38] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1230 for Minecraft 1.7.10 loading [21:27:38] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_71, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre7 [21:27:38] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [21:27:38] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:27:38] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [21:27:38] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:27:38] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [21:27:38] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [21:27:39] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [21:27:46] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [21:27:46] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [21:27:46] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [21:27:49] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [21:27:49] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [21:27:49] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [21:27:56] [main/INFO]: Setting user: Player125 [21:28:04] [Client thread/INFO]: LWJGL Version: 2.9.1 [21:28:06] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [21:28:06] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1230 Initialized [21:28:06] [Client thread/INFO] [FML]: Replaced 182 ore recipies [21:28:07] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [21:28:08] [Client thread/INFO] [FML]: Searching C:\Users\Dragon543\Games\PC Gaming\Minecraft\Forge Modding\Forge Mods\eclipse\mods for mods [21:28:18] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [21:28:19] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, dragonsextension] at CLIENT [21:28:19] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, dragonsextension] at SERVER [21:28:21] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Dragon's Extension [21:28:21] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [21:28:21] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [21:28:21] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 2: tile.blockLapis [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 3: tile.blockCoal [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 4: tile.hayBlock [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 5: item.ingotGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 6: tile.melon [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 7: tile.enderChest [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 8: tile.beacon [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 9: item.chestplateCloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 10: item.leggingsCloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 11: item.chestplateChain [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 12: item.leggingsChain [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 13: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 16: item.emptyMap [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 17: tile.tnt [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 18: item.cake [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 19: tile.stairsWood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 20: tile.stairsWoodBirch [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 21: tile.stairsWoodSpruce [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 22: tile.stairsWoodJungle [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 23: tile.stairsWoodAcacia [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 24: tile.stairsWoodDarkOak [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 25: tile.stairsStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 26: tile.stairsBrick [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 27: tile.stairsStoneBrickSmooth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 28: tile.stairsNetherBrick [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 29: tile.stairsSandStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 30: tile.stairsQuartz [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 31: item.appleGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 32: item.carrotGolden [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 33: item.speckledMelon [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 34: item.emptyMap [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 35: tile.daylightDetector [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 36: tile.thinGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 37: item.helmetCloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 38: item.bootsCloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 39: item.helmetChain [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 40: item.bootsChain [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 41: tile.cobbleWall [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 42: tile.cobbleWall [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 43: tile.netherFence [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 44: item.glassBottle [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 45: item.flowerPot [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 46: tile.sandStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 47: tile.sandStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 48: tile.stonebricksmooth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 49: tile.netherBrick [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 50: tile.snow [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 51: tile.clay [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 52: tile.brick [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 53: tile.quartzBlock [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 54: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 55: item.carrotOnAStick [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 56: item.cookie [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 57: item.paper [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 58: tile.snow [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 59: tile.stoneSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 60: tile.stoneSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 61: tile.stoneSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 62: tile.stoneSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 63: tile.stoneSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 64: tile.woodSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 65: tile.woodSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 66: tile.woodSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 67: tile.woodSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 68: tile.woodSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 69: item.bread [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 70: tile.chestTrap [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 71: tile.sandStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 72: tile.quartzBlock [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 73: tile.quartzBlock [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 74: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 75: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 76: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 77: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 78: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 79: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 80: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 81: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 82: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 83: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 84: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 85: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 86: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 87: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 88: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 89: tile.woolCarpet [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 90: tile.litpumpkin [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 91: item.minecartChest [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 92: item.minecartFurnace [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 93: item.minecartTnt [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 94: item.minecartHopper [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 95: item.ingotGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 96: item.ingotIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 97: item.diamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 98: item.emerald [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 99: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 100: item.redstone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 101: item.coal [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 102: item.wheat [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 103: item.seeds_melon [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 104: item.seeds_pumpkin [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 105: item.sugar [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 106: tile.wood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 107: tile.wood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 108: tile.wood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 109: tile.wood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 110: tile.wood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 111: tile.wood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 112: item.book [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 113: item.mushroomStew [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 114: item.pumpkinPie [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 115: item.fermentedSpiderEye [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 116: item.fireball [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 117: item.fireball [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 118: item.eyeOfEnder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 119: item.blazePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 120: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 121: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 122: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 123: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 124: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 125: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 126: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 127: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 128: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 129: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 130: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 131: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 132: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 133: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 134: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 135: item.pickaxeWood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 136: item.pickaxeStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 137: item.pickaxeIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 138: item.pickaxeDiamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 139: item.pickaxeGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 140: item.bow [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 141: tile.blockGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 142: tile.blockIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 143: tile.blockDiamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 144: tile.blockEmerald [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 145: tile.blockRedstone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 146: tile.chest [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 147: tile.furnace [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 148: tile.redstoneLight [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 149: item.chestplateIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 150: item.leggingsIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 151: item.chestplateDiamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 152: item.leggingsDiamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 153: item.chestplateGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 154: item.leggingsGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 155: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 156: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 157: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 158: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 159: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 160: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 161: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 162: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 163: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 164: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 165: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 166: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 167: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 168: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 169: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 170: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 171: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 172: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 173: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 174: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 175: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 176: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 177: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 178: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 179: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 180: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 181: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 182: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 183: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 184: tile.stainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 185: tile.clayHardenedStained [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 186: tile.jukebox [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 187: item.leash [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 188: tile.musicBlock [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 189: tile.bookshelf [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 190: tile.ladder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 191: item.sign [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 192: tile.rail [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 193: tile.activatorRail [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 194: tile.detectorRail [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 195: item.cauldron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 196: item.fishingRod [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 197: item.painting [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 198: item.frame [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 199: item.appleGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 200: item.comparator [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 201: item.clock [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 202: item.compass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 203: tile.dispenser [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 204: tile.dropper [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 205: tile.pistonBase [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 206: tile.enchantmentTable [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 207: tile.anvil [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 208: tile.hopper [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 209: item.hatchetWood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 210: item.hoeWood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 211: item.hatchetStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 212: item.hoeStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 213: item.hatchetIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 214: item.hoeIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 215: item.hatchetDiamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 216: item.hoeDiamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 217: item.hatchetGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 218: item.hoeGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 219: tile.fenceIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 220: item.helmetIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 221: item.bootsIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 222: item.helmetDiamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 223: item.bootsDiamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 224: item.helmetGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 225: item.bootsGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 226: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 227: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 228: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 229: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 230: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 231: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 232: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 233: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 234: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 235: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 236: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 237: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 238: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 239: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 240: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 241: tile.thinStainedGlass [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 242: tile.fence [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 243: tile.fenceGate [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 244: item.doorWood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 245: tile.trapdoor [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 246: item.doorIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 247: item.bowl [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 248: item.minecart [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 249: item.brewingStand [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 250: item.boat [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 251: item.bucket [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 252: item.diode [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 253: item.bed [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 254: item.shears [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 255: tile.workbench [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 256: tile.lightgem [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 257: item.shovelWood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 258: item.shovelStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 259: item.shovelIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 260: item.shovelDiamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 261: item.shovelGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 262: item.swordWood [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 263: item.swordStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 264: item.swordIron [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 265: item.swordDiamond [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 266: item.swordGold [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 267: item.arrow [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 268: tile.stoneSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 269: tile.stoneSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 270: tile.woodSlab [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 271: tile.tripWireSource [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 272: item.stick [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 273: tile.torch [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 274: tile.torch [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 275: tile.lever [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 276: tile.notGate [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 277: tile.pressurePlate [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 278: tile.pressurePlate [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 279: tile.weightedPlate_heavy [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 280: tile.weightedPlate_light [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 281: tile.pistonStickyBase [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 282: item.goldNugget [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 283: tile.button [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 284: tile.button [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 285: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 286: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 287: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 288: item.writingBook [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 289: item.magmaCream [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 290: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 291: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 292: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 293: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 294: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 295: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 296: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 297: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 298: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 299: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 300: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 301: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 302: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 303: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 304: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 305: tile.cloth [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 306: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 307: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 308: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 309: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 310: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 311: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 312: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 313: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 314: item.dyePowder [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 315: item.flintAndSteel [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 316: item.NetherPickaxe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 317: item.NetherShovel [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 318: item.NetherAxe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 319: item.NetherHoe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 320: item.EnderPickaxe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 321: item.EnderShovel [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 322: item.EnderAxe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 323: item.EnderHoe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 324: item.MegaPickaxe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 325: item.MegaShovel [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 326: item.MegaAxe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 327: item.MegaHoe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 328: item.StarPickaxe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 329: item.StarShovel [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 330: item.StarAxe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 331: item.StarHoe [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 332: item.SavingStone [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 333: item.nameTag [21:28:24] [Client thread/INFO] [FML]: Applying holder lookups [21:28:24] [Client thread/INFO] [FML]: Holder lookups applied [21:28:25] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:28:25] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [21:28:25] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [21:28:25] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [21:28:26] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [21:28:26] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:28:26] [sound Library Loader/INFO]: Sound engine started [21:28:33] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [21:28:33] [Client thread/INFO]: Created: 256x256 textures/items-atlas [21:28:33] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [21:28:33] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Dragon's Extension [21:28:34] [Client thread/INFO]: Created: 256x256 textures/items-atlas [21:28:35] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [21:28:35] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:28:35] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [21:28:35] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [21:28:35] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:28:35] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:28:35] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [21:28:35] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [21:28:35] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [21:28:36] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [21:28:36] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:28:36] [sound Library Loader/INFO]: Sound engine started [21:28:45] [Client thread/INFO]: Stopping! [21:28:45] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [21:28:45] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [21:28:45] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [21:28:45] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: I see where it looks like it should be in the console: [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 191: item.sign [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 192: tile.rail [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 193: tile.activatorRail [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 194: tile.detectorRail [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 195: item.cauldron EDIT: Or at least I think that's where it would show up, it doens't look like: 192: net.minecraft.item.ItemBlock@c94504 -- tile.goldenRail
November 18, 201410 yr [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 212: item.hoeStone Jesus F-ing Christ! YOU can't find one of YOUR desired recipe removals (but its in my list) and I can't find one of MINE (but its in your list)! ...And I think I know what the issue is. Add an i-- right after you remove the recipe (or change the iteration to start at list.size()-1 and count backwards). Because we're both itterating over the array from front to back, we're accidentally skipping over array elements. I'm such an idiot. (I blame it on being sick and overworked: 36.5 hours logged last week and I wasn't in the office Monday or Tuesday). Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
November 18, 201410 yr Author [21:28:22] [Client thread/INFO] [sTDOUT]: [com.dragonsextension.main.DragonsExtensionCrafting:addCraftingRecipes:55]: 212: item.hoeStone Jesus F-ing Christ! YOU can't find one of YOUR desired recipe removals (but its in my list) and I can't find one of MINE (but its in your list)! ...And I think I know what the issue is. Add an i-- right after you remove the recipe (or change the iteration to start at list.size()-1 and count backwards). Because we're both itterating over the array from front to back, we're accidentally skipping over array elements. I'm such an idiot. (I blame it on being sick and overworked: 36.5 hours logged last week and I wasn't in the office Monday or Tuesday). Thanks, I just tested it as a published mod outside eclipse and it worked.
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.