From aca7e0a1ceedfea85cd7b14b38f7a64d9cb1e5b6 Mon Sep 17 00:00:00 2001 From: nxyi Date: Wed, 11 Sep 2024 15:48:48 +0100 Subject: [PATCH] fix grammer --- src/main/java/com/dark/zewo2/modules/TotemNotifier.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/dark/zewo2/modules/TotemNotifier.java b/src/main/java/com/dark/zewo2/modules/TotemNotifier.java index 4097f11..cd372b5 100644 --- a/src/main/java/com/dark/zewo2/modules/TotemNotifier.java +++ b/src/main/java/com/dark/zewo2/modules/TotemNotifier.java @@ -58,7 +58,7 @@ private void onReceivePacket(PacketEvent.Receive event) { int pops = popMap.getOrDefault(player.getUuid(), 0); popMap.put(player.getUuid(), ++pops); - String message = "%s has popped their %s totem".formatted(player.getGameProfile().getName(), pops); + String message = "%s has popped %s totem(s)".formatted(player.getGameProfile().getName(), pops); if (announce.get()) ChatUtils.sendPlayerMsg(message); else ChatUtils.info(message);