Added some spell block rendering

This commit is contained in:
WayofTime 2014-02-06 22:17:22 -05:00
parent bdf9760e8a
commit 456d4990bf
11 changed files with 633 additions and 9 deletions

View file

@ -26,6 +26,24 @@ public class BlockSpellEffect extends BlockOrientable
return new TESpellEffectBlock();
}
@Override
public boolean renderAsNormalBlock()
{
return false;
}
@Override
public int getRenderType()
{
return -1;
}
@Override
public boolean isOpaqueCube()
{
return false;
}
@SideOnly(Side.CLIENT)
public void getSubBlocks(int par1, CreativeTabs par2CreativeTabs, List par3List)
{