3
0
Mirror von https://github.com/ViaVersion/ViaBackwards.git synchronisiert 2024-07-10 01:08:03 +02:00

Fix player head in 1.20.2->1.20 (#786)

Dieser Commit ist enthalten in:
Pantera (Mad_Daniel) 2024-06-15 22:10:20 +09:00 committet von GitHub
Ursprung eceda8ac58
Commit b7af3b7d8e
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: B5690EEEBB952194

Datei anzeigen

@ -18,6 +18,7 @@
package com.viaversion.viabackwards.protocol.v1_20_2to1_20.rewriter;
import com.viaversion.nbt.tag.CompoundTag;
import com.viaversion.nbt.tag.IntArrayTag;
import com.viaversion.nbt.tag.StringTag;
import com.viaversion.nbt.tag.Tag;
import com.viaversion.viabackwards.api.rewriters.BackwardsItemRewriter;
@ -378,6 +379,11 @@ public final class BlockItemPacketRewriter1_20_2 extends BackwardsItemRewriter<C
}
if (item.tag() != null) {
com.viaversion.viaversion.protocols.v1_20to1_20_2.rewriter.BlockItemPacketRewriter1_20_2.to1_20_1Effects(item);
final CompoundTag skullOwnerTag = item.tag().getCompoundTag("SkullOwner");
if (skullOwnerTag != null && !skullOwnerTag.contains("Id") && skullOwnerTag.contains("Properties")) {
skullOwnerTag.put("Id", new IntArrayTag(new int[]{0, 0, 0, 0}));
}
}
return super.handleItemToClient(connection, item);
@ -411,6 +417,11 @@ public final class BlockItemPacketRewriter1_20_2 extends BackwardsItemRewriter<C
final String effectKey = Key.stripMinecraftNamespace(((StringTag) secondaryEffect).getValue());
tag.putInt("Secondary", PotionEffects1_20_2.keyToId(effectKey) + 1); // Empty effect at 0
}
final CompoundTag skullOwnerTag = tag.getCompoundTag("SkullOwner");
if (skullOwnerTag != null && !skullOwnerTag.contains("Id") && skullOwnerTag.contains("Properties")) {
skullOwnerTag.put("Id", new IntArrayTag(new int[]{0, 0, 0, 0}));
}
return tag;
}
}
}