diff options
author | appable <enzospiacitelli@gmail.com> | 2024-06-03 11:04:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 20:04:22 +0200 |
commit | fa524e03723906c5fda6073b6ff289af4742b6b6 (patch) | |
tree | 15767fa83597197af2071e549a3d75783ceae41a /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | 6dc2637814aec37e1312d4f9a18ec70f58b938b1 (diff) | |
download | skyhanni-fa524e03723906c5fda6073b6ff289af4742b6b6.tar.gz skyhanni-fa524e03723906c5fda6073b6ff289af4742b6b6.tar.bz2 skyhanni-fa524e03723906c5fda6073b6ff289af4742b6b6.zip |
Improvement: import egg locations from NEU PV (#1972)
Co-authored-by: Cal <cwolfson58@gmail.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt index 611b57621..bd6cc8efe 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -29,6 +29,7 @@ import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowHelper import at.hannibal2.skyhanni.features.event.diana.InquisitorWaypointShare import at.hannibal2.skyhanni.features.event.diana.MythologicalCreatureTracker import at.hannibal2.skyhanni.features.event.hoppity.HoppityCollectionStats +import at.hannibal2.skyhanni.features.event.hoppity.HoppityEggLocations import at.hannibal2.skyhanni.features.event.jerry.frozentreasure.FrozenTreasureTracker import at.hannibal2.skyhanni.features.fishing.tracker.FishingProfitTracker import at.hannibal2.skyhanni.features.fishing.tracker.SeaCreatureTracker @@ -535,6 +536,10 @@ object Commands { "shaddfoundburrowlocationsfromclipboard", "Add all ever found burrow locations from clipboard" ) { AllBurrowsList.addFromClipboard() } + registerCommand( + "shtoggleegglocationdebug", + "Shows Hoppity egg locations with their internal API names and status." + ) { HoppityEggLocations.toggleDebug() } } private fun internalCommands() { |