Fix numeric ids that doesn't need string remap

This commit is contained in:
creeper123123321 2019-03-23 16:23:15 -03:00
parent 3fd3777e8c
commit e03db26530
No known key found for this signature in database
GPG Key ID: 0AC57D54786721D1

View File

@ -400,7 +400,7 @@ public class InventoryPackets {
newCanPlaceOn.add(new StringTag("", newValue));
}
} else {
newCanPlaceOn.add(oldTag);
newCanPlaceOn.add(new StringTag("", oldId));
}
}
tag.put(newCanPlaceOn);
@ -422,7 +422,7 @@ public class InventoryPackets {
newCanDestroy.add(new StringTag("", newValue));
}
} else {
newCanDestroy.add(oldTag);
newCanDestroy.add(new StringTag("", oldId));
}
}
tag.put(newCanDestroy);