Fix Spectral Block storing of block
This commit is contained in:
parent
abf4a7df5d
commit
29a8117771
|
@ -52,7 +52,7 @@ public class TileSpectralBlock extends TileEntity implements ITickable
|
||||||
|
|
||||||
private void setContainedBlockInfo(IBlockState blockState)
|
private void setContainedBlockInfo(IBlockState blockState)
|
||||||
{
|
{
|
||||||
containedBlockName = blockState.getBlock().getUnlocalizedName().substring(5);
|
containedBlockName = Block.blockRegistry.getNameForObject(blockState.getBlock()).toString();
|
||||||
containedBlockMeta = blockState.getBlock().getMetaFromState(blockState);
|
containedBlockMeta = blockState.getBlock().getMetaFromState(blockState);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue