Skip to content

Commit

Permalink
fix grammer
Browse files Browse the repository at this point in the history
  • Loading branch information
nxyi committed Sep 11, 2024
1 parent d44a99e commit aca7e0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/dark/zewo2/modules/TotemNotifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit aca7e0a

Please sign in to comment.