Altar renders now

This commit is contained in:
Nick 2015-11-02 15:28:33 -08:00
parent 5985be1cd0
commit 72041e936a
5 changed files with 306 additions and 0 deletions

View file

@ -15,6 +15,26 @@ public class BlockAltar extends BlockContainer {
setCreativeTab(BloodMagic.tabBloodMagic);
}
@Override
public boolean isOpaqueCube() {
return false;
}
@Override
public boolean isFullCube() {
return false;
}
@Override
public boolean isVisuallyOpaque() {
return false;
}
@Override
public int getRenderType() {
return 3;
}
@Override
public TileEntity createNewTileEntity(World world, int meta) {
// return new TileAltar();