s
This commit is contained in:
parent
9f0298b9d5
commit
8b09c72255
2 changed files with 6 additions and 2 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue