We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51f001a commit 8d5b348Copy full SHA for 8d5b348
common/src/main/java/com/viaversion/viarewind/protocol/v1_9to1_8/rewriter/EntityPacketRewriter1_9.java
@@ -97,7 +97,7 @@ public void register() {
97
handler(wrapper -> {
98
final int entityId = wrapper.get(Types.VAR_INT, 0);
99
final int entityType = wrapper.get(Types.BYTE, 0);
100
- int data = wrapper.get(Types.INT, 0);
+ int data = wrapper.get(Types.INT, 3);
101
final EntityTypes1_9.EntityType type = EntityTypes1_9.ObjectType.getEntityType(entityType, data);
102
103
// Cancel new entities which can't be handled properly
0 commit comments