aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/dungeon
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-11 03:46:54 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-11 03:46:54 +0200
commit6991c7375d35706b63f8d4347df72696cbdde860 (patch)
treed5a29fe2f7b1950bc9d70bc1123aaacfd15ef05a /src/main/java/at/hannibal2/skyhanni/features/dungeon
parentf5bd9e61c3e70079ba08c0dd78db22f402023571 (diff)
downloadskyhanni-6991c7375d35706b63f8d4347df72696cbdde860.tar.gz
skyhanni-6991c7375d35706b63f8d4347df72696cbdde860.tar.bz2
skyhanni-6991c7375d35706b63f8d4347df72696cbdde860.zip
Added support for custom hypixel ip addresses (looking at ilovecatgirls.xyz)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/dungeon')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonChatFilter.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonChatFilter.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonChatFilter.kt
index 9bd5149cc..4f45cdde4 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonChatFilter.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonChatFilter.kt
@@ -10,7 +10,7 @@ class DungeonChatFilter {
@SubscribeEvent
fun onChatMessage(event: LorenzChatEvent) {
- if (!LorenzUtils.isHyPixel) return
+ if (!LorenzUtils.isHypixel) return
// Workaround since the potion message gets always sent in that moment when skyblock is set as false
if (!LorenzUtils.inSkyBlock && !event.message.startsWith("§aYour active Potion Effects")) return