Fix Machine Casing Model

This commit is contained in:
modmuss50 2016-12-05 10:07:41 +00:00
parent 2fdce5405b
commit c661f6b278
5 changed files with 60 additions and 25 deletions

View file

@ -86,15 +86,4 @@ public class BlockMachineCasing extends BlockMultiblockBase {
return new TileMachineCasing();
}
@Override
public boolean shouldSideBeRendered(IBlockState blockState, IBlockAccess worldIn, BlockPos pos, EnumFacing side) {
Block b = worldIn.getBlockState(pos).getBlock();
return b != this && super.shouldSideBeRendered(blockState, worldIn, pos, side);
}
@Override
public boolean canRenderInLayer(IBlockState state, BlockRenderLayer layer) {
return true;
}
}