This commit is contained in:
Yulife 2016-05-30 14:18:43 +02:00
parent 9f0298b9d5
commit 8b09c72255
2 changed files with 6 additions and 2 deletions

View file

@ -59,7 +59,9 @@ public class ItemIngots extends ItemTextureBase
{
for (int meta = 0; meta < types.length; ++meta)
{
list.add(new ItemStack(item, 1, meta));
if(!types[meta].equals(ModItems.META_PLACEHOLDER)){
list.add(new ItemStack(item, 1, meta));
}
}
}

View file

@ -60,7 +60,9 @@ public class ItemNuggets extends ItemTextureBase
{
for (int meta = 0; meta < types.length; ++meta)
{
list.add(new ItemStack(item, 1, meta));
if(!types[meta].equals(ModItems.META_PLACEHOLDER)){
list.add(new ItemStack(item, 1, meta));
}
}
}