Fix Spectral Block storing of block

This commit is contained in:
Nick 2016-02-18 02:03:38 -08:00
parent abf4a7df5d
commit 29a8117771

View file

@ -52,7 +52,7 @@ public class TileSpectralBlock extends TileEntity implements ITickable
private void setContainedBlockInfo(IBlockState blockState)
{
containedBlockName = blockState.getBlock().getUnlocalizedName().substring(5);
containedBlockName = Block.blockRegistry.getNameForObject(blockState.getBlock()).toString();
containedBlockMeta = blockState.getBlock().getMetaFromState(blockState);
}