From c4b5959e976b9072b20cbcfaa5dcba719ef04e79 Mon Sep 17 00:00:00 2001 From: bspkrs Date: Mon, 16 Dec 2013 11:24:15 -0500 Subject: set isInitialized = true when done --- common/darkknight/jewelrycraft/recipes/CraftingRecipes.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'common/darkknight/jewelrycraft/recipes/CraftingRecipes.java') diff --git a/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java b/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java index 57d28fa..7d187a2 100644 --- a/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java +++ b/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java @@ -8,7 +8,7 @@ import darkknight.jewelrycraft.block.BlockList; import darkknight.jewelrycraft.item.ItemList; public class CraftingRecipes -{ +{ private static boolean isInitialized = false; public static void preInit(FMLPreInitializationEvent e) @@ -17,6 +17,8 @@ public class CraftingRecipes { GameRegistry.addRecipe(new ItemStack(ItemList.thiefGloves), "x x", "yxy", "yxy", 'x', ItemList.shadowIngot, 'y', new ItemStack(Block.cloth, 1, 15)); GameRegistry.addSmelting(BlockList.shadowOre.blockID, new ItemStack(ItemList.shadowIngot), 1.5f); + + isInitialized = true; } } } -- cgit v1.2.3