From e703e9d2b85b6482b3326192596d1fe9b1f49ed0 Mon Sep 17 00:00:00 2001 From: Gero Date: Fri, 8 Dec 2023 09:40:47 +0100 Subject: [PATCH] Fix SessionPlayerChat packet registration --- .../java/com/velocitypowered/proxy/protocol/StateRegistry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/protocol/StateRegistry.java b/proxy/src/main/java/com/velocitypowered/proxy/protocol/StateRegistry.java index 583ba26c2..4a4b453f7 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/protocol/StateRegistry.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/protocol/StateRegistry.java @@ -211,7 +211,7 @@ public enum StateRegistry { serverbound.register( SessionPlayerChat.class, SessionPlayerChat::new, - map(0x05, MINECRAFT_1_19_3, MINECRAFT_1_20_2, false)); + map(0x05, MINECRAFT_1_19_3, false)); serverbound.register( ClientSettings.class, ClientSettings::new,