diff options
| author | bspkrs <bspkrs@gmail.com> | 2013-12-16 11:24:15 -0500 |
|---|---|---|
| committer | bspkrs <bspkrs@gmail.com> | 2013-12-16 11:24:15 -0500 |
| commit | c4b5959e976b9072b20cbcfaa5dcba719ef04e79 (patch) | |
| tree | c34bb602a8158d848bc4003921dc9db9d1f9f1f6 /common/darkknight/jewelrycraft/recipes/CraftingRecipes.java | |
| parent | f9d492fbb509e9e2b4b3a2fcf1ab04e322940bf2 (diff) | |
set isInitialized = true when done
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; } } } |
