diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-30 11:21:21 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-30 11:21:21 +0200 |
commit | 7622d5d456312a99f66dfd8c9c90068d6c806e2d (patch) | |
tree | e85c5b2bb402ced99f00b8647e23088da768ae8c /src/main/java/at/hannibal2 | |
parent | efc65524d33573cabee6a16cdd77941148b09221 (diff) | |
download | skyhanni-7622d5d456312a99f66dfd8c9c90068d6c806e2d.tar.gz skyhanni-7622d5d456312a99f66dfd8c9c90068d6c806e2d.tar.bz2 skyhanni-7622d5d456312a99f66dfd8c9c90068d6c806e2d.zip |
prepared 0.11.1 and removed more blaze slayer drop messages
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index e06cba8cd..dbfd8e336 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -59,7 +59,7 @@ import java.util.List; public class SkyHanniMod { public static final String MODID = "skyhanni"; - public static final String VERSION = "0.11"; + public static final String VERSION = "0.11.1"; public static Features feature; 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 b568336d2..e28494398 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt @@ -184,8 +184,7 @@ 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§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 + if (message.matchRegex("§9§lVERY RARE DROP! §r§7\\(§r§f§r§7\\dx §r§f§r§9(Gabagool|Glowstone|Blaze Rod) Distillate§r§7\\) (.*)")) return true return false } |