aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cole <40234707+DavidArthurCole@users.noreply.github.com>2024-10-27 23:23:21 -0400
committerGitHub <noreply@github.com>2024-10-28 14:23:21 +1100
commit740a046c467a2b313c9aa04b87aeeca6e7632e46 (patch)
tree10ee75ab54ed1fb1f967378523f1e33342bcd7f1
parent6d7049248706ebc6e6fc356638b3464caedea2d4 (diff)
downloadSkyHanni-740a046c467a2b313c9aa04b87aeeca6e7632e46.tar.gz
SkyHanni-740a046c467a2b313c9aa04b87aeeca6e7632e46.tar.bz2
SkyHanni-740a046c467a2b313c9aa04b87aeeca6e7632e46.zip
malformed pattern (#2849)
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt2
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 c374a2279..18c94da97 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt
@@ -165,7 +165,7 @@ object ChatFilter {
private val slayerDropPatterns = listOf(
// Zombie
// TODO merge patterns together. Just because old ones are designed poorly doesnt mean new ones need to be poor as well
- "§b§lRARE DROP! §r§7\\(§r§f§r§7(.*)x §9Revenant Viscera§r§7\\) (.*)".toPattern(),
+ "§b§lRARE DROP! §r§7\\(§r§f§r§7(.*)x §r§f§r§9Revenant Viscera§r§7\\) (.*)".toPattern(),
"§b§lRARE DROP! §r§7\\(§r§f§r§9Revenant Viscera§r§7\\) (.*)".toPattern(),
"§b§lRARE DROP! §r§7\\(§r§f§r§7(.*)x §r§f§r§9Foul Flesh§r§7\\) (.*)".toPattern(),
"§b§lRARE DROP! §r§7\\(§r§f§r§9Foul Flesh§r§7\\) (.*)".toPattern(),