From 30b3b6951ca9a29dd0ba27e0f34efad3b05a4aa4 Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Wed, 6 Mar 2024 19:44:41 +1100 Subject: Backend: Use more isInIsland (#1107) --- .../at/hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt | 1 - 1 file changed, 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/combat') diff --git a/src/main/java/at/hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt b/src/main/java/at/hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt index 8f53aa5d9..c4eb1f074 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/combat/ghostcounter/GhostCounter.kt @@ -403,7 +403,6 @@ object GhostCounter { @SubscribeEvent fun onChat(event: LorenzChatEvent) { if (!isEnabled()) return - if (LorenzUtils.skyBlockIsland != IslandType.DWARVEN_MINES) return for (opt in Option.entries) { val pattern = opt.pattern ?: continue pattern.matchMatcher(event.message) { -- cgit