From dae9cafbcbd46751311d377b38b4d9ccf3e8f51b Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal002@users.noreply.github.com> Date: Thu, 22 Feb 2024 21:56:23 +0100 Subject: Saving every diana burrow location and option to show them. #938 --- src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands') 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() { -- cgit