diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-12-27 18:13:37 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-12-27 18:13:37 +0100 |
commit | 31df4b31ded78db6714e8b859b073ad4dce3c470 (patch) | |
tree | afa2690317dfc9d0b7175ced08fcd3281d0bf1b2 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
parent | db3c0c3b85fd746be0c0e3e0a0cb8d9d21ba0229 (diff) | |
download | skyhanni-31df4b31ded78db6714e8b859b073ad4dce3c470.tar.gz skyhanni-31df4b31ded78db6714e8b859b073ad4dce3c470.tar.bz2 skyhanni-31df4b31ded78db6714e8b859b073ad4dce3c470.zip |
moved to version 0.13 and implemented better chat prefix logic
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, 3 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index de9d1c2e0..a20ce7bc0 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -13,7 +13,7 @@ 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.chat.playerchat.PlayerChatModifier; import at.hannibal2.skyhanni.features.commands.WikiCommand; import at.hannibal2.skyhanni.features.damageindicator.DamageIndicatorManager; import at.hannibal2.skyhanni.features.dungeon.*; @@ -61,7 +61,7 @@ import java.util.List; public class SkyHanniMod { public static final String MODID = "skyhanni"; - public static final String VERSION = "0.12.2"; + public static final String VERSION = "0.13"; public static Features feature; @@ -101,7 +101,7 @@ public class SkyHanniMod { //features registerEvent(new BazaarOrderHelper()); registerEvent(new ChatFilter()); - registerEvent(new PlayerChatFormatter()); + registerEvent(new PlayerChatModifier()); registerEvent(new DungeonChatFilter()); registerEvent(new HideNotClickableItems()); registerEvent(new ItemDisplayOverlayFeatures()); |