diff options
| author | Lorenz <lo.scherf@gmail.com> | 2022-08-26 21:05:20 +0200 |
|---|---|---|
| committer | Lorenz <lo.scherf@gmail.com> | 2022-08-26 21:05:20 +0200 |
| commit | 9cd969dc06ee91e2d93b6ef656bcc35e5b574c12 (patch) | |
| tree | 1e5f4dc18170060d204164373f2261b14f0f8e8d /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
| parent | f5971ea6e7d4fea8f442c92f5ece7812892e844d (diff) | |
| download | SkyHanni-9cd969dc06ee91e2d93b6ef656bcc35e5b574c12.tar.gz SkyHanni-9cd969dc06ee91e2d93b6ef656bcc35e5b574c12.tar.bz2 SkyHanni-9cd969dc06ee91e2d93b6ef656bcc35e5b574c12.zip | |
added summoning mob features
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 353cfa934..d77c4f9cc 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -15,7 +15,6 @@ 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.ChatManager; -import at.hannibal2.skyhanni.features.chat.NewChatFilter; import at.hannibal2.skyhanni.features.chat.PlayerChatFilter; import at.hannibal2.skyhanni.features.commands.WikiCommand; import at.hannibal2.skyhanni.features.damageindicator.DamageIndicatorManager; @@ -68,7 +67,6 @@ public class SkyHanniMod { registerEvent(new BazaarOrderHelper()); registerEvent(new ChatFilter()); - registerEvent(new NewChatFilter()); registerEvent(new PlayerChatFilter()); registerEvent(new DungeonChatFilter()); registerEvent(new HideNotClickableItems()); @@ -98,6 +96,7 @@ public class SkyHanniMod { registerEvent(new RealTime()); registerEvent(new RngMeterInventory()); registerEvent(new WikiCommand()); + registerEvent(new SummoningMobManager()); Commands.init(); |
