Some models work, some don't

This commit is contained in:
Nicholas Ignoffo 2017-08-15 23:01:36 -07:00
parent 08258fd6ef
commit 3b173ecf17
115 changed files with 72 additions and 80 deletions

View file

@ -61,9 +61,10 @@ public class ItemBlockBloodTank extends ItemBlock {
@SideOnly(Side.CLIENT)
public void getSubItems(CreativeTabs creativeTab, NonNullList<ItemStack> list) {
if (!isInCreativeTab(creativeTab))
return;
for (int i = 0; i < TileBloodTank.CAPACITIES.length; i++)
list.add(new ItemStack(this, 1, i));
for (int i = 0; i < TileBloodTank.CAPACITIES.length; i++)
list.add(new ItemStack(this, 1, i));
}
public int getCapacity(ItemStack container) {