Can anyone help with a problem I am having? For Minecraft Forge, i have a 256x256 items.png file and when i set the IconIndex to (0), my image shows, but when i put IconIndex to (1), it shows up as a chain mail helmet.
I have put this in the wrong forum, do not respond, I have corrected my mistake. Sorry.
Here is the codes I used:
public final static Item LightningSword = new LightningSword(5000, EnumToolMaterial.IRON).setMaxStackSize(1).setIconIndex(0).setItemName("lightningsword").setCreativeTab(CreativeTabs.tabCombat);
^This Icon Index works
public final static Item LightningShovel = new LightningShovel(5001, EnumToolMaterial.IRON).setMaxStackSize(1).setIconIndex(1).setItemName("lightningshovel").setCreativeTab(CreativeTabs.tabTools);
^This ingame image shows up as a chain mail helmet
Here are some images: < This is my 256 x 256 png
v This is my Problem
I have put this in the wrong forum, do not respond, I have corrected my mistake. Sorry.
Here is the codes I used:
public final static Item LightningSword = new LightningSword(5000, EnumToolMaterial.IRON).setMaxStackSize(1).setIconIndex(0).setItemName("lightningsword").setCreativeTab(CreativeTabs.tabCombat);
^This Icon Index works
public final static Item LightningShovel = new LightningShovel(5001, EnumToolMaterial.IRON).setMaxStackSize(1).setIconIndex(1).setItemName("lightningshovel").setCreativeTab(CreativeTabs.tabTools);
^This ingame image shows up as a chain mail helmet
Here are some images: < This is my 256 x 256 png
v This is my Problem