diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-16 00:05:11 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-16 00:05:11 +0200 |
| commit | d32e0c37b6b514b31cd2e21294c81b3e56e3050f (patch) | |
| tree | 90ed949e4a353afc660f5cfd05aea8d66b5270b7 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
| parent | 9b08ac8a353963e802ff964170420a867960f5b5 (diff) | |
| download | SkyHanni-d32e0c37b6b514b31cd2e21294c81b3e56e3050f.tar.gz SkyHanni-d32e0c37b6b514b31cd2e21294c81b3e56e3050f.tar.bz2 SkyHanni-d32e0c37b6b514b31cd2e21294c81b3e56e3050f.zip | |
added support for links in player chat
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index a5fda4100..0d4afe7de 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -12,8 +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.HideFarDeathMessages; -import at.hannibal2.skyhanni.features.chat.PlayerChatFilter; -import at.hannibal2.skyhanni.features.chat.SkyBlockLevelChatMessage; +import at.hannibal2.skyhanni.features.chat.PlayerChatFormatter; import at.hannibal2.skyhanni.features.commands.WikiCommand; import at.hannibal2.skyhanni.features.damageindicator.DamageIndicatorManager; import at.hannibal2.skyhanni.features.dungeon.*; @@ -80,8 +79,7 @@ public class SkyHanniMod { registerEvent(new BazaarOrderHelper()); registerEvent(new ChatFilter()); - registerEvent(new PlayerChatFilter()); - registerEvent(new SkyBlockLevelChatMessage()); + registerEvent(new PlayerChatFormatter()); registerEvent(new DungeonChatFilter()); registerEvent(new HideNotClickableItems()); registerEvent(new ItemDisplayOverlayFeatures()); |
