Skip to content

Commit 5361c01

Browse files
committed
Fix shouldered parrot tracking in 1.21.9->1.21.7
Fixes #1257
1 parent 041f7f9 commit 5361c01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common/src/main/java/com/viaversion/viabackwards/protocol/v1_21_9to1_21_7/rewriter/EntityPacketRewriter1_21_9.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ protected void registerRewrites() {
362362
final CompoundTag entityTag = new CompoundTag();
363363
final Integer value = data.value();
364364
if (value != null) {
365-
entityTag.putInt("id", EntityTypes1_21_6.PARROT.getId());
365+
entityTag.putString("id", "parrot");
366366
entityTag.putInt("Variant", value);
367367
}
368368
data.setTypeAndValue(protocol.mappedTypes().entityDataTypes.compoundTagType, entityTag);

0 commit comments

Comments
 (0)