diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-29 19:36:51 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-29 19:36:51 +0200 |
commit | 6e7bf73b36d428e5efe41f8658553a5bb1afe9f5 (patch) | |
tree | cbc6d11195d154c373b7698ac1833e2e5e869295 | |
parent | 7c4744d520ba965f3bd937f4511a6873d69701c6 (diff) | |
download | skyhanni-6e7bf73b36d428e5efe41f8658553a5bb1afe9f5.tar.gz skyhanni-6e7bf73b36d428e5efe41f8658553a5bb1afe9f5.tar.bz2 skyhanni-6e7bf73b36d428e5efe41f8658553a5bb1afe9f5.zip |
added more slayer drops to hider
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt | 3 |
1 files changed, 2 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 4335fe5ce..b568336d2 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt @@ -184,7 +184,8 @@ class ChatFilter { //Blaze if (message.matchRegex("§9§lVERY RARE DROP! §r§7\\(§r§f§r§fWisp's Ice-Flavored Water I Splash Potion§r§7\\) (.*)")) return true if (message.matchRegex("§b§lRARE DROP! §r§7\\(§r§f§r§5Bundle of Magma Arrows§r§7\\) (.*)")) return true - if (message.matchRegex("§9§lVERY RARE DROP! §r§7\\(§r§f§r§77x §r§f§r§9Gabagool Distillate§r§7\\) (.*)")) return true + if (message.matchRegex("§9§lVERY RARE DROP! §r§7\\(§r§f§r§7\\dx §r§f§r§9Gabagool Distillate§r§7\\) (.*)")) return true + if (message.matchRegex("§9§lVERY RARE DROP! §r§7\\(§r§f§r§7\\dx §r§f§r§9Glowstone Distillate§r§7\\) (.*)")) return true return false } |