totallynotskidded™️ from chayapak
This commit is contained in:
Chipmunk 2023-04-28 23:13:34 -04:00
parent 0a4dab93d6
commit 00e5acfde3

View file

@ -43,7 +43,7 @@ public class ChatPlugin extends SessionAdapter {
}
public void message (String message) {
final ServerboundChatPacket packet = new ServerboundChatPacket(message, Instant.now().toEpochMilli(), 0, new byte[0], 0, new BitSet());
final ServerboundChatPacket packet = new ServerboundChatPacket(message, Instant.now().toEpochMilli(), 0, null, 0, new BitSet());
client.session().send(packet);
}