From 18ceefa5c2cede0a7c287f263a9ca7a8613932f0 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 14 Oct 2023 15:41:34 +0200 Subject: Fixed Abiphone ring message not getting filtered correctly. --- 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') 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 4ed49a233..cbe4d4f56 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt @@ -200,7 +200,7 @@ class ChatFilter { if (message == "§eYou received kill credit for assisting on a slayer miniboss!") return true - if (message.matchRegex("§e✆(?: Ring\\.\\.\\.)+ ")) return true + if (message.startsWith("§e✆ RING... ")) return true return false } -- cgit