Remove old cells, now uses the DynamicCell, 9 new fluids that need a texture

This commit is contained in:
modmuss50 2016-05-23 18:26:21 +01:00
parent 401093a70b
commit 25ee0b5790
6 changed files with 100 additions and 183 deletions

View file

@ -2,7 +2,12 @@ package techreborn.client;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidRegistry;
import techreborn.init.ModItems;
import techreborn.items.DynamicCell;
import java.util.Random;
public class TechRebornCreativeTabMisc extends CreativeTabs
{
@ -17,7 +22,7 @@ public class TechRebornCreativeTabMisc extends CreativeTabs
@Override
public Item getTabIconItem()
{
return ModItems.cells;
return ModItems.dynamicCell;
}
}