diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-02-22 21:56:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-22 21:56:23 +0100 |
commit | dae9cafbcbd46751311d377b38b4d9ccf3e8f51b (patch) | |
tree | 2ef331a83b655e836975690cb1f6c1ca35e5532a /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | 7bde14535264d20e37c5c085f8a03db3275044b5 (diff) | |
download | skyhanni-dae9cafbcbd46751311d377b38b4d9ccf3e8f51b.tar.gz skyhanni-dae9cafbcbd46751311d377b38b4d9ccf3e8f51b.tar.bz2 skyhanni-dae9cafbcbd46751311d377b38b4d9ccf3e8f51b.zip |
Saving every diana burrow location and option to show them. #938
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 9 |
1 files changed, 9 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 b196bb634..680834317 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -14,6 +14,7 @@ import at.hannibal2.skyhanni.features.chat.Translator import at.hannibal2.skyhanni.features.combat.endernodetracker.EnderNodeTracker import at.hannibal2.skyhanni.features.combat.ghostcounter.GhostUtil import at.hannibal2.skyhanni.features.commands.PartyCommands +import at.hannibal2.skyhanni.features.event.diana.AllBurrowsList import at.hannibal2.skyhanni.features.event.diana.BurrowWarpHelper import at.hannibal2.skyhanni.features.event.diana.DianaProfitTracker import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowHelper @@ -421,6 +422,14 @@ object Commands { "readcropmilestonefromclipboard", "Read crop milestone from clipboard. This helps fixing wrong crop milestone data" ) { GardenCropMilestonesCommunityFix.readDataFromClipboard() } + registerCommand( + "shcopyfoundburrowlocations", + "Copy all ever found burrow locations to clipboard" + ) { AllBurrowsList.copyToClipboard() } + registerCommand( + "shaddfoundburrowlocationsfromclipboard", + "Add all ever found burrow locations from clipboard" + ) { AllBurrowsList.addFromClipboard() } } private fun internalCommands() { |