diff --git a/IronChests2/common/cpw/mods/ironchest/ItemChestChanger.java b/IronChests2/common/cpw/mods/ironchest/ItemChestChanger.java index ce92656..dd2c59e 100644 --- a/IronChests2/common/cpw/mods/ironchest/ItemChestChanger.java +++ b/IronChests2/common/cpw/mods/ironchest/ItemChestChanger.java @@ -14,8 +14,8 @@ public class ItemChestChanger extends Item implements ITextureProvider { public ItemChestChanger(int id, ChestChangerType type) { super(id); setMaxStackSize(1); - setIconIndex(0); this.type=type; + setIconIndex(type.ordinal()); setItemName(type.itemName); } diff --git a/IronChests2/resources/cpw/mods/ironchest/sprites/item_textures.png b/IronChests2/resources/cpw/mods/ironchest/sprites/item_textures.png new file mode 100644 index 0000000..65baf43 Binary files /dev/null and b/IronChests2/resources/cpw/mods/ironchest/sprites/item_textures.png differ diff --git a/IronChests2/resources/itemsheet.xcf b/IronChests2/resources/itemsheet.xcf new file mode 100644 index 0000000..7f86204 Binary files /dev/null and b/IronChests2/resources/itemsheet.xcf differ