aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-08-26 12:11:59 +0200
committerGitHub <noreply@github.com>2024-08-26 12:11:59 +0200
commit70e6d63411a48ee6eb8ea398cb9ab0538455d942 (patch)
treeed95c765e1d14368adff5bb29d459de73c222f93 /src/main/java/at/hannibal2/skyhanni/config
parent78e5046355d1047e1988b19eaadf155caae159f1 (diff)
downloadskyhanni-70e6d63411a48ee6eb8ea398cb9ab0538455d942.tar.gz
skyhanni-70e6d63411a48ee6eb8ea398cb9ab0538455d942.tar.bz2
skyhanni-70e6d63411a48ee6eb8ea398cb9ab0538455d942.zip
Improvement: Fossil Excavator Reset Command (#2408)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-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 f021fe326..a1549aacf 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -55,6 +55,7 @@ import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorDropStatistics
import at.hannibal2.skyhanni.features.inventory.chocolatefactory.ChocolateFactoryStrayTracker
import at.hannibal2.skyhanni.features.mining.KingTalismanHelper
import at.hannibal2.skyhanni.features.mining.MineshaftPityDisplay
+import at.hannibal2.skyhanni.features.mining.fossilexcavator.ExcavatorProfitTracker
import at.hannibal2.skyhanni.features.mining.powdertracker.PowderTracker
import at.hannibal2.skyhanni.features.minion.MinionFeatures
import at.hannibal2.skyhanni.features.misc.CollectionTracker
@@ -281,6 +282,10 @@ object Commands {
"Resets the Stray Rabbit Tracker",
) { ChocolateFactoryStrayTracker.resetCommand() }
registerCommand(
+ "shresetexcavatortracker",
+ "Resets the Fossil Excavator Profit Tracker",
+ ) { ExcavatorProfitTracker.resetCommand() }
+ registerCommand(
"shfandomwiki",
"Searches the fandom wiki with SkyHanni's own method.",
) { WikiManager.otherWikiCommands(it, true) }