#3387: Use the correct write method for ChatChain in ClientCommand

This commit is contained in:
Outfluencer
2022-08-26 23:40:18 +02:00
committed by GitHub
parent 5e7dcc48b9
commit 71990e3ccc

View File

@@ -67,7 +67,7 @@ public class ClientCommand extends DefinedPacket
buf.writeBoolean( signedPreview );
if ( protocolVersion >= ProtocolConstants.MINECRAFT_1_19_1 )
{
chain.write( buf );
chain.write( buf, direction, protocolVersion );
}
}