diff options
| author | Lorenz <lo.scherf@gmail.com> | 2022-08-16 23:11:13 +0200 |
|---|---|---|
| committer | Lorenz <lo.scherf@gmail.com> | 2022-08-16 23:11:13 +0200 |
| commit | acc866dc2a5f1f55ea8307321e31f8f3a8742e5e (patch) | |
| tree | 0a023782492b312dec5d6663a823e9716aa6276f /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
| parent | 1d6d249d9d33d0250c56cfcd57c09db82b3b2f29 (diff) | |
| download | SkyHanni-acc866dc2a5f1f55ea8307321e31f8f3a8742e5e.tar.gz SkyHanni-acc866dc2a5f1f55ea8307321e31f8f3a8742e5e.tar.bz2 SkyHanni-acc866dc2a5f1f55ea8307321e31f8f3a8742e5e.zip | |
add ashfang reset cooldown
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 86b7c3f5b..4ee380890 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -11,7 +11,6 @@ import at.hannibal2.skyhanni.config.Features; import at.hannibal2.skyhanni.config.gui.commands.Commands; import at.hannibal2.skyhanni.damageindicator.BossDamageIndicator; import at.hannibal2.skyhanni.dungeon.*; -import at.hannibal2.skyhanni.features.abilities.AshfangFreezeCooldown; import at.hannibal2.skyhanni.fishing.SeaCreatureManager; import at.hannibal2.skyhanni.fishing.SeaCreatureMessageShortener; import at.hannibal2.skyhanni.fishing.TrophyFishMessages; @@ -20,6 +19,8 @@ import at.hannibal2.skyhanni.items.HideNotClickableItems; import at.hannibal2.skyhanni.items.ItemDisplayOverlayFeatures; import at.hannibal2.skyhanni.items.abilitycooldown.ItemAbilityCooldown; import at.hannibal2.skyhanni.misc.*; +import at.hannibal2.skyhanni.misc.nether.ashfang.AshfangFreezeCooldown; +import at.hannibal2.skyhanni.misc.nether.ashfang.AshfangNextResetCooldown; import at.hannibal2.skyhanni.repo.RepoManager; import at.hannibal2.skyhanni.test.LorenzTest; import com.google.gson.Gson; @@ -84,6 +85,7 @@ public class SkyHanniMod { registerEvent(new SeaCreatureMessageShortener()); // registerEvent(new GriffinBurrowFinder()); registerEvent(new AshfangFreezeCooldown()); + registerEvent(new AshfangNextResetCooldown()); registerEvent(new SummoningSoulsName()); Commands.init(); |
