From 6991c7375d35706b63f8d4347df72696cbdde860 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Tue, 11 Apr 2023 03:46:54 +0200 Subject: Added support for custom hypixel ip addresses (looking at ilovecatgirls.xyz) --- src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/chat') 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 != "") { -- cgit