diff --git a/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ConnectedPlayer.java b/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ConnectedPlayer.java index 6eef94294..88bc3dc24 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ConnectedPlayer.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ConnectedPlayer.java @@ -404,6 +404,10 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player { throw new NullPointerException("value"); } + if (this.getProtocolVersion().compareTo(ProtocolVersion.MINECRAFT_1_8) < 0) { + return; + } + GsonComponentSerializer serializer = ProtocolUtils.getJsonChatSerializer(this .getProtocolVersion());