Merge pull request #723 from lazerzes/1.9

Fixed Issue #703; Blocks with MetaData being reset to 0
This commit is contained in:
WayofTime 2016-05-02 20:54:22 -04:00
commit 1e9f3dadd3

View file

@ -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)
{