Merge pull request #723 from lazerzes/1.9
Fixed Issue #703; Blocks with MetaData being reset to 0
This commit is contained in:
commit
1e9f3dadd3
|
@ -77,7 +77,7 @@ public class ItemSigilTransposition extends ItemSigilBase
|
|||
|
||||
NBTTagCompound tileNBTTag = new NBTTagCompound();
|
||||
String blockName = rightClickedBlock.getBlock().getRegistryName().toString();
|
||||
byte metadata = (byte) stack.getMetadata();
|
||||
byte metadata = (byte) rightClickedBlock.getMeta();
|
||||
|
||||
if (world.getTileEntity(blockPos) != null)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue