aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-08-06 17:56:02 +0200
committerLorenz <lo.scherf@gmail.com>2022-08-06 17:56:02 +0200
commit93a6f80ee469e727eae82afcc50d0e14f094bde0 (patch)
treebb9baadd6324890e5cda1b01aac39a73d717116a /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java
parent165eaaae1ebe16323f7350ee453009da89fd1a15 (diff)
downloadSkyHanni-93a6f80ee469e727eae82afcc50d0e14f094bde0.tar.gz
SkyHanni-93a6f80ee469e727eae82afcc50d0e14f094bde0.tar.bz2
SkyHanni-93a6f80ee469e727eae82afcc50d0e14f094bde0.zip
adding support for damage indicator outside dungeon
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java
index 4ee9472ee..2a8a76631 100644
--- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java
+++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java
@@ -9,9 +9,8 @@ import at.hannibal2.skyhanni.chat.NewChatFilter;
import at.hannibal2.skyhanni.chat.PlayerChatFilter;
import at.hannibal2.skyhanni.config.Features;
import at.hannibal2.skyhanni.config.gui.commands.Commands;
-import at.hannibal2.skyhanni.diana.GriffinBurrowFinder;
import at.hannibal2.skyhanni.dungeon.*;
-import at.hannibal2.skyhanni.dungeon.damageindicator.DungeonBossDamageIndicator;
+import at.hannibal2.skyhanni.dungeon.damageindicator.BossDamageIndicator;
import at.hannibal2.skyhanni.features.abilities.AshfangFreezeCooldown;
import at.hannibal2.skyhanni.fishing.SeaCreatureManager;
import at.hannibal2.skyhanni.fishing.SeaCreatureMessageShortener;
@@ -72,7 +71,7 @@ public class SkyHanniMod {
MinecraftForge.EVENT_BUS.register(new ItemDisplayOverlayFeatures());
MinecraftForge.EVENT_BUS.register(new CurrentPetDisplay());
MinecraftForge.EVENT_BUS.register(new ExpBottleOnGroundHider());
- MinecraftForge.EVENT_BUS.register(new DungeonBossDamageIndicator());
+ MinecraftForge.EVENT_BUS.register(new BossDamageIndicator());
MinecraftForge.EVENT_BUS.register(new ItemAbilityCooldown());
MinecraftForge.EVENT_BUS.register(new DungeonMilestoneDisplay());
MinecraftForge.EVENT_BUS.register(new DungeonDeathCounter());