aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-02-22 21:56:23 +0100
committerGitHub <noreply@github.com>2024-02-22 21:56:23 +0100
commitdae9cafbcbd46751311d377b38b4d9ccf3e8f51b (patch)
tree2ef331a83b655e836975690cb1f6c1ca35e5532a /src/main/java/at/hannibal2/skyhanni/config/commands
parent7bde14535264d20e37c5c085f8a03db3275044b5 (diff)
downloadskyhanni-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.kt9
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() {