diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-17 17:40:44 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-17 17:40:44 +0200 |
| commit | ce43d92584b785650b35d5a6ebdbfddd7d31661c (patch) | |
| tree | 08d0cb94c13fc2dd5b2c6e550ff0faea0271346e /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
| parent | dae53e9abc14dde4fb193feace1424776b2535da (diff) | |
| download | SkyHanni-ce43d92584b785650b35d5a6ebdbfddd7d31661c.tar.gz SkyHanni-ce43d92584b785650b35d5a6ebdbfddd7d31661c.tar.bz2 SkyHanni-ce43d92584b785650b35d5a6ebdbfddd7d31661c.zip | |
mark players in chat
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index cf310e364..1dd8ad6ef 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -11,8 +11,8 @@ import at.hannibal2.skyhanni.features.bazaar.BazaarApi; 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.PlayerChatFormatter; +import at.hannibal2.skyhanni.features.chat.PlayerDeathMessages; +import at.hannibal2.skyhanni.features.chat.playerchat.PlayerChatFormatter; import at.hannibal2.skyhanni.features.commands.WikiCommand; import at.hannibal2.skyhanni.features.damageindicator.DamageIndicatorManager; import at.hannibal2.skyhanni.features.dungeon.*; @@ -119,9 +119,9 @@ public class SkyHanniMod { registerEvent(new SummoningMobManager()); registerEvent(new VoidlingExtremistColor()); registerEvent(new CorruptedMobHighlight()); - registerEvent(new PlayerMarker()); + registerEvent(new MarkedPlayerManager()); registerEvent(new HighlightSlayerMiniboss()); - registerEvent(new HideFarDeathMessages()); + registerEvent(new PlayerDeathMessages()); registerEvent(new HighlightDungeonDeathmite()); registerEvent(new DungeonHideItems()); registerEvent(new DungeonCopilot()); |
