aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorHiZe <super@hize.be>2024-03-24 00:39:34 +0100
committerGitHub <noreply@github.com>2024-03-24 00:39:34 +0100
commitf093523b7cc083c70d8060df3614db6145e75a16 (patch)
treed2433349ee924ffb0ff6a2301a54e11355c9e2c8 /src/main/java/at/hannibal2/skyhanni/config
parentf173c6305a8a1c4c22829f19385a53d5e3707379 (diff)
downloadskyhanni-f093523b7cc083c70d8060df3614db6145e75a16.tar.gz
skyhanni-f093523b7cc083c70d8060df3614db6145e75a16.tar.bz2
skyhanni-f093523b7cc083c70d8060df3614db6145e75a16.zip
Improvement: Visitor Drops Statistics reset command (#1135)
Co-authored-by: superhize <superhize@gmail.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 2290b8eac..28261296d 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -44,6 +44,7 @@ import at.hannibal2.skyhanni.features.garden.farming.GardenStartLocation
import at.hannibal2.skyhanni.features.garden.farming.lane.FarmingLaneCreator
import at.hannibal2.skyhanni.features.garden.fortuneguide.CaptureFarmingGear
import at.hannibal2.skyhanni.features.garden.fortuneguide.FFGuideGUI
+import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorDropStatistics
import at.hannibal2.skyhanni.features.mining.KingTalismanHelper
import at.hannibal2.skyhanni.features.mining.powdertracker.PowderTracker
import at.hannibal2.skyhanni.features.minion.MinionFeatures
@@ -211,6 +212,10 @@ object Commands {
"shresetfishingtracker",
"Resets the Fishing Profit Tracker"
) { FishingProfitTracker.resetCommand(it) }
+ registerCommand(
+ "shresetvisitordrops",
+ "Reset the Visitors Drop Statistics"
+ ) { GardenVisitorDropStatistics.reset() }
registerCommand("shbingotoggle", "Toggle the bingo card display mode") { BingoCardDisplay.toggleCommand() }
registerCommand(
"shfarmingprofile",