Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
guimc233 committed Aug 14, 2024
1 parent 9cb1491 commit 73c54a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void onChatReceive(ChatReceiveEvent event) {
if (mc.theWorld == null || mc.thePlayer == null) return;
if (!ZombiesHelperConfig.noPuncher) return;
String message = event.message.getUnformattedTextForChat();
if (message.toLowerCase(Locale.ROOT).contains("you found the puncher in the lucky chest")) {
if (message.contains("You found The Puncher")) {
lastPuncherTick = mc.thePlayer.ticksExisted;
}
if (message.toLowerCase(Locale.ROOT).contains("fight with your teammates against oncoming")) {
Expand Down

0 comments on commit 73c54a7

Please sign in to comment.