diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-17 19:30:57 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-17 19:30:57 +0200 |
commit | f9f22a5f61d129a17073a795537dcb222907964f (patch) | |
tree | 6c58201259d8be10617b6dcff63735de062fdd56 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
parent | ce43d92584b785650b35d5a6ebdbfddd7d31661c (diff) | |
download | skyhanni-f9f22a5f61d129a17073a795537dcb222907964f.tar.gz skyhanni-f9f22a5f61d129a17073a795537dcb222907964f.tar.bz2 skyhanni-f9f22a5f61d129a17073a795537dcb222907964f.zip |
added player chat filter
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 1dd8ad6ef..0180f3fb2 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -12,6 +12,7 @@ import at.hannibal2.skyhanni.features.bazaar.BazaarBestSellMethod; import at.hannibal2.skyhanni.features.bazaar.BazaarOrderHelper; import at.hannibal2.skyhanni.features.chat.ChatFilter; import at.hannibal2.skyhanni.features.chat.PlayerDeathMessages; +import at.hannibal2.skyhanni.features.chat.playerchat.PlayerChatFilter; import at.hannibal2.skyhanni.features.chat.playerchat.PlayerChatFormatter; import at.hannibal2.skyhanni.features.commands.WikiCommand; import at.hannibal2.skyhanni.features.damageindicator.DamageIndicatorManager; @@ -130,6 +131,7 @@ public class SkyHanniMod { registerEvent(new HideMobNames()); registerEvent(new HideDamageSplash()); registerEvent(new ThunderSparksHighlight()); + registerEvent(new PlayerChatFilter()); Commands.init(); |