summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authorThunderblade73 <85900443+Thunderblade73@users.noreply.github.com>2024-04-25 09:59:45 +0200
committerGitHub <noreply@github.com>2024-04-25 09:59:45 +0200
commitec1e6bfd635311d940ee9e0dc80832c64021aa3e (patch)
tree7b94f1f59ea2ccbe66554d7ec787998a4d7b508d /src/main/java/at/hannibal2/skyhanni/config/commands
parentf3b3b44296b8a6ac77ecad433ca28e7a03a9eaf2 (diff)
downloadskyhanni-ec1e6bfd635311d940ee9e0dc80832c64021aa3e.tar.gz
skyhanni-ec1e6bfd635311d940ee9e0dc80832c64021aa3e.tar.bz2
skyhanni-ec1e6bfd635311d940ee9e0dc80832c64021aa3e.zip
Fix: Command to clear kismet (#1539)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt5
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 e4a09e54e..36494c359 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -17,6 +17,7 @@ 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.commands.WikiManager
+import at.hannibal2.skyhanni.features.dungeon.CroesusChestTracker
import at.hannibal2.skyhanni.features.event.diana.AllBurrowsList
import at.hannibal2.skyhanni.features.event.diana.BurrowWarpHelper
import at.hannibal2.skyhanni.features.event.diana.DianaProfitTracker
@@ -359,6 +360,10 @@ object Commands {
"Shows the status of all the mods constants"
) { SkyHanniMod.repo.displayRepoStatus(false) }
registerCommand(
+ "shclearksimet",
+ "Cleares the saved values of the applied kismet feathers in Croesus"
+ ) { CroesusChestTracker.resetChest() }
+ registerCommand(
"shkingfix",
"Reseting the local King Talisman Helper offset."
) { KingTalismanHelper.kingFix() }