From c0aa648467a3f4c48f830b2f548613abe1c495cf Mon Sep 17 00:00:00 2001 From: Bixilon Date: Sun, 5 Jul 2020 19:40:11 +0200 Subject: [PATCH] 1.11 fix wrong packet mapping --- .../bixilon/minosoft/protocol/protocol/Protocol_1_11_2.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/de/bixilon/minosoft/protocol/protocol/Protocol_1_11_2.java b/src/main/java/de/bixilon/minosoft/protocol/protocol/Protocol_1_11_2.java index f7c4d9e6f..c06878972 100644 --- a/src/main/java/de/bixilon/minosoft/protocol/protocol/Protocol_1_11_2.java +++ b/src/main/java/de/bixilon/minosoft/protocol/protocol/Protocol_1_11_2.java @@ -109,8 +109,8 @@ public class Protocol_1_11_2 extends Protocol { serverboundPacketMapping.put(Packets.Serverbound.PLAY_PLUGIN_MESSAGE, 0x09); serverboundPacketMapping.put(Packets.Serverbound.PLAY_INTERACT_ENTITY, 0x0A); serverboundPacketMapping.put(Packets.Serverbound.PLAY_KEEP_ALIVE, 0x0B); - serverboundPacketMapping.put(Packets.Serverbound.PLAY_PLAYER_POSITION, 0x0D); - serverboundPacketMapping.put(Packets.Serverbound.PLAY_PLAYER_POSITION_AND_ROTATION, 0x0C); + serverboundPacketMapping.put(Packets.Serverbound.PLAY_PLAYER_POSITION, 0x0C); + serverboundPacketMapping.put(Packets.Serverbound.PLAY_PLAYER_POSITION_AND_ROTATION, 0x0D); serverboundPacketMapping.put(Packets.Serverbound.PLAY_PLAYER_ROTATION, 0x0E); serverboundPacketMapping.put(Packets.Serverbound.PLAY_VEHICLE_MOVE, 0x10); serverboundPacketMapping.put(Packets.Serverbound.PLAY_STEER_BOAT, 0x11);