Fixed "see through world" syndrome for most blocks

This commit is contained in:
WayofTime 2016-03-22 09:31:47 -04:00
parent d8c5d75381
commit 95b10f35c8
12 changed files with 63 additions and 4 deletions

View file

@ -43,6 +43,12 @@ public class BlockSoulForge extends BlockContainer implements IVariantProvider
setCreativeTab(BloodMagic.tabBloodMagic);
}
@Override
public boolean isOpaqueCube(IBlockState state)
{
return false;
}
@Override
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos)
{