diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-11 03:46:54 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-11 03:46:54 +0200 |
| commit | 6991c7375d35706b63f8d4347df72696cbdde860 (patch) | |
| tree | d5a29fe2f7b1950bc9d70bc1123aaacfd15ef05a /src/main/java/at/hannibal2/skyhanni/features/chat | |
| parent | f5bd9e61c3e70079ba08c0dd78db22f402023571 (diff) | |
| download | skyhanni-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/chat')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt b/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt index e5494c328..7a746299e 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt @@ -11,7 +11,7 @@ class ChatFilter { @SubscribeEvent fun onChatMessage(event: LorenzChatEvent) { - if (!LorenzUtils.isHyPixel) return + if (!LorenzUtils.isHypixel) return val blockReason = block(event.message) if (blockReason != "") { |
