I was trying to make an Item with subitems,
it works all fine but I can not override the getSubItem method of the ItemDye class:
@Override
@SideOnly(Side.CLIENT)
public void getSubItems(Item item, CreativeTabs tab, List list){
for (int i = 0; i < 17; i++){
list.add(new ItemStack(item, 1, i));
}
}
I get an underlined error:
and I don't know why and if I can get around this somehow or if the max amount of metadata is already reached with 16?
Everything else works find, name is right and I get 16 Items, it is not crashing but the 17th item just doesn't show up.
Thanks for every help
Flashexx