Skip to content

Commit

Permalink
Fixed PING packet for 1.19.1 and 1.19.2 (#2518)
Browse files Browse the repository at this point in the history
Changed PLAYER_CHAT_HEADER duplicated currentId due to bug on 1.19.1 and 1.19.2 versions with PING
  • Loading branch information
Fanfaryy authored Aug 26, 2023
1 parent 8fc5e50 commit 2686c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/comphenix/protocol/PacketType.java
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ public static class Server extends PacketTypeEnum {
* @deprecated Removed in 1.19.3
*/
@Deprecated
public static final PacketType PLAYER_CHAT_HEADER = new PacketType(PROTOCOL, SENDER, 0x32, "PlayerChatHeader");
public static final PacketType PLAYER_CHAT_HEADER = new PacketType(PROTOCOL, SENDER, 0xF0, "PlayerChatHeader");

/**
* @deprecated Removed in 1.19.3
Expand Down

0 comments on commit 2686c9f

Please sign in to comment.