Fixes #211
This commit is contained in:
KennyTV 2020-06-25 14:30:05 +02:00
parent c4630039c4
commit 385ca98125
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -244,10 +244,10 @@ public class BlockItemPackets1_16 extends nl.matsv.viabackwards.api.rewriters.It
Tag skullOwnerTag = tag.remove("SkullOwner"); Tag skullOwnerTag = tag.remove("SkullOwner");
if (!(skullOwnerTag instanceof CompoundTag)) return; if (!(skullOwnerTag instanceof CompoundTag)) return;
CompoundTag skullOwnerCompoundTag = tag.remove("SkullOwner"); CompoundTag skullOwnerCompoundTag = (CompoundTag) skullOwnerTag;
IntArrayTag ownerUuidTag = skullOwnerCompoundTag.remove("Id"); Tag ownerUuidTag = skullOwnerCompoundTag.remove("Id");
if (ownerUuidTag != null) { if (ownerUuidTag instanceof IntArrayTag) {
UUID ownerUuid = UUIDIntArrayType.uuidFromIntArray(ownerUuidTag.getValue()); UUID ownerUuid = UUIDIntArrayType.uuidFromIntArray((int[]) ownerUuidTag.getValue());
skullOwnerCompoundTag.put(new StringTag("Id", ownerUuid.toString())); skullOwnerCompoundTag.put(new StringTag("Id", ownerUuid.toString()));
} }