From 99cd4b0dc836c1cf37ce91d35353ee9bb02752a6 Mon Sep 17 00:00:00 2001 From: GamerDuck123 Date: Fri, 28 Jan 2022 17:20:46 -0500 Subject: [PATCH] Fixed ClientboundSetSubtitleTextPacket mapping ClientboundSetTitleTextPacket was mapped twice, once under 0x5A (The correct mapping) and under 0x58 (ClientboundSetSubtitleTextPacket 's mapping) --- src/main/resources/mapping.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/mapping.json b/src/main/resources/mapping.json index a69d8d6..af1be8e 100644 --- a/src/main/resources/mapping.json +++ b/src/main/resources/mapping.json @@ -46,9 +46,9 @@ "PacketPlayOutHeldItemChange": "0x48", "PacketPlayOutPlayerListHeaderFooter": "0x5F", "PacketPlayOutResourcePackSend": "0x3C", - "ClientboundSetTitlesAnimationPacket": "0x5B", - "ClientboundSetTitleTextPacket": "0x5A", - "ClientboundSetTitleTextPacket": "0x58", + "ClientboundSetTitlesAnimationPacket": "0x5B", + "ClientboundSetTitleTextPacket": "0x5A", + "ClientboundSetSubtitleTextPacket": "0x58", "ClientboundClearTitlesPacket": "0x10" }, "StatusIn": { @@ -59,4 +59,4 @@ "PacketStatusOutResponse": "0x00", "PacketStatusOutPong": "0x01" } -} \ No newline at end of file +}