From cf990976ba9eb26ed7867dfb4199f3fc013c9930 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 3 Oct 2022 02:37:49 +0200 Subject: added diana features --- src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java') diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 7aef3f50b..351fb628e 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -18,6 +18,9 @@ import at.hannibal2.skyhanni.features.commands.WikiCommand; import at.hannibal2.skyhanni.features.damageindicator.DamageIndicatorManager; import at.hannibal2.skyhanni.features.dungeon.*; import at.hannibal2.skyhanni.features.end.VoidlingExtremistColor; +import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowHelper; +import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowParticleFinder; +import at.hannibal2.skyhanni.features.event.diana.SoopyGuessBurrow; import at.hannibal2.skyhanni.features.fishing.SeaCreatureManager; import at.hannibal2.skyhanni.features.fishing.SeaCreatureMessageShortener; import at.hannibal2.skyhanni.features.fishing.TrophyFishMessages; @@ -155,6 +158,9 @@ public class SkyHanniMod { registerEvent(new StatsTuning()); registerEvent(new NonGodPotEffectDisplay()); registerEvent(new HideBlazeParticles()); + registerEvent(new SoopyGuessBurrow()); + registerEvent(new GriffinBurrowHelper()); + registerEvent(new GriffinBurrowParticleFinder()); Commands.INSTANCE.init(); -- cgit