1
mirror of https://github.com/Shiewk/ViewServerResources.git synced 2026-04-28 03:44:17 +02:00

1.21.3 Support

This commit is contained in:
Shy
2024-12-03 11:07:29 +01:00
parent d305a8937c
commit e9880117d7
3 changed files with 7 additions and 7 deletions
@@ -11,7 +11,7 @@ public class ChatAnnouncer implements ClientTickEvents.EndTick {
@Override
public void onEndTick(MinecraftClient client) {
if (client.player != null && !queue.isEmpty()){
client.player.sendMessage(queue.removeFirst());
client.player.sendMessage(queue.removeFirst(), false);
}
}