diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-10-03 14:14:39 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-10-03 14:14:39 +0200 |
| commit | 08f15c1fc11e8c3142c859fdff0c3e80afcab0fe (patch) | |
| tree | a5e5522618d1dfd6bdf9b63eef63fd21c7dcb3c3 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
| parent | 075b7c517bb0a4f0c06156d351baba37b9317957 (diff) | |
| download | SkyHanni-08f15c1fc11e8c3142c859fdff0c3e80afcab0fe.tar.gz SkyHanni-08f15c1fc11e8c3142c859fdff0c3e80afcab0fe.tar.bz2 SkyHanni-08f15c1fc11e8c3142c859fdff0c3e80afcab0fe.zip | |
Warps to the nearest warp point on the hub, if closer to the next burrow.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 351fb628e..21b5bc1d7 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -18,6 +18,7 @@ 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.BurrowWarpHelper; import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowHelper; import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowParticleFinder; import at.hannibal2.skyhanni.features.event.diana.SoopyGuessBurrow; @@ -161,6 +162,7 @@ public class SkyHanniMod { registerEvent(new SoopyGuessBurrow()); registerEvent(new GriffinBurrowHelper()); registerEvent(new GriffinBurrowParticleFinder()); + registerEvent(new BurrowWarpHelper()); Commands.INSTANCE.init(); |
