From d8bcaa05a5536f76aaf3d2286d3bb1c368586d1e Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Wed, 18 Dec 2013 23:54:49 +0200 Subject: Added clay molds, fixed particles issues, rings now take the color of the ingot used. --- common/darkknight/jewelrycraft/item/ItemList.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common/darkknight/jewelrycraft/item/ItemList.java') diff --git a/common/darkknight/jewelrycraft/item/ItemList.java b/common/darkknight/jewelrycraft/item/ItemList.java index 3309faf..3810d6a 100644 --- a/common/darkknight/jewelrycraft/item/ItemList.java +++ b/common/darkknight/jewelrycraft/item/ItemList.java @@ -10,6 +10,7 @@ public class ItemList public static Item thiefGloves; public static Item shadowIngot; public static Item molds; + public static Item clayMolds; public static Item ring; private static boolean isInitialized = false; @@ -21,6 +22,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); + clayMolds = new ItemClayMolds(ConfigHandler.idClayMolds).setUnlocalizedName("jewelrycraft.mold").setTextureName("Mold").setCreativeTab(JewelrycraftMod.jewelrycraft); ring = new ItemRing(ConfigHandler.idRing).setUnlocalizedName("jewelrycraft.ring").setCreativeTab(JewelrycraftMod.jewelrycraft); isInitialized = true; -- cgit v1.2.3