summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/recipes/CraftingRecipes.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2013-12-16 19:14:46 +0200
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2013-12-16 19:14:46 +0200
commitd548c65cf67e9f9605093eade74bef62028b7cf6 (patch)
treee4ef8a5ef3cd0b53dba0113640933b428af72edb /common/darkknight/jewelrycraft/recipes/CraftingRecipes.java
parenta51234bf851a4249b6d884a63b0cfa8bfea6bc0c (diff)
parent88f9db07874f704b1dee719576c204b10e681577 (diff)
Merge branch 'master' of https://github.com/sor1n/Modjam-Mod
Diffstat (limited to 'common/darkknight/jewelrycraft/recipes/CraftingRecipes.java')
-rw-r--r--common/darkknight/jewelrycraft/recipes/CraftingRecipes.java4
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;
}
}
}