summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/item/ItemList.java
diff options
context:
space:
mode:
Diffstat (limited to 'common/darkknight/jewelrycraft/item/ItemList.java')
-rw-r--r--common/darkknight/jewelrycraft/item/ItemList.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/darkknight/jewelrycraft/item/ItemList.java b/common/darkknight/jewelrycraft/item/ItemList.java
index 7bf3705..261fa9e 100644
--- a/common/darkknight/jewelrycraft/item/ItemList.java
+++ b/common/darkknight/jewelrycraft/item/ItemList.java
@@ -9,6 +9,7 @@ public class ItemList
{
public static Item thiefGloves;
public static Item shadowIngot;
+ public static Item molds;
private static boolean isInitialized = false;
@@ -18,7 +19,7 @@ public class ItemList
{
thiefGloves = new ItemThiefGloves(ConfigHandler.idThiefGloves).setUnlocalizedName("jewelrycraft.thiefGloves").setCreativeTab(JewelrycraftMod.jewelrycraft);
shadowIngot = new ItemBase(ConfigHandler.idShadowIngot).setUnlocalizedName("jewelrycraft.ingotShadow").setCreativeTab(JewelrycraftMod.jewelrycraft);
-
+ molds = new ItemMolds(ConfigHandler.idMolds).setUnlocalizedName("jewelrycraft.mold").setTextureName("Mold").setCreativeTab(JewelrycraftMod.jewelrycraft);
}
}
}