Fixed SILLY rendering errors with the Mimic

This commit is contained in:
WayofTime 2016-08-26 17:11:03 -04:00
parent 215b337f71
commit b422e00019
5 changed files with 12 additions and 39 deletions

View file

@ -207,7 +207,7 @@ public class BlockMimic extends BlockStringContainer implements IVariantProvider
@Override
public boolean canRenderInLayer(IBlockState state, BlockRenderLayer layer)
{
return layer == BlockRenderLayer.CUTOUT_MIPPED || layer == BlockRenderLayer.TRANSLUCENT;
return layer == BlockRenderLayer.CUTOUT_MIPPED || layer == BlockRenderLayer.CUTOUT;
}
@Override