diff options
Diffstat (limited to 'common/darkknight/jewelrycraft/recipes/CraftingRecipes.java')
| -rw-r--r-- | common/darkknight/jewelrycraft/recipes/CraftingRecipes.java | 4 |
1 files changed, 3 insertions, 1 deletions
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; } } } |
