From 5e7dcc48b9c55a573bdfed7bd75b388a53b1f4f6 Mon Sep 17 00:00:00 2001 From: Outfluencer <48880402+Outfluencer@users.noreply.github.com> Date: Sat, 20 Aug 2022 08:22:14 +0200 Subject: [PATCH] #3382: Use the correct write method for ChatChain in ClientChat packet --- .../main/java/net/md_5/bungee/protocol/packet/ClientChat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/packet/ClientChat.java b/protocol/src/main/java/net/md_5/bungee/protocol/packet/ClientChat.java index aabc549a..59e4daf1 100644 --- a/protocol/src/main/java/net/md_5/bungee/protocol/packet/ClientChat.java +++ b/protocol/src/main/java/net/md_5/bungee/protocol/packet/ClientChat.java @@ -49,7 +49,7 @@ public class ClientChat extends DefinedPacket buf.writeBoolean( signedPreview ); if ( protocolVersion >= ProtocolConstants.MINECRAFT_1_19_1 ) { - chain.write( buf ); + chain.write( buf, direction, protocolVersion ); } }