aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authorEmpa <42304516+ItsEmpa@users.noreply.github.com>2024-04-03 20:56:48 +0200
committerGitHub <noreply@github.com>2024-04-03 20:56:48 +0200
commit82a65251bb57f87459a6ef664c6321542b5cfccc (patch)
treeaeec03713b12910d7618c1b0b294a6e18245fad0 /src/main/java/at/hannibal2/skyhanni/config/commands
parent2f85351bacddb9ab3704a53c778d558a755bcc06 (diff)
downloadskyhanni-82a65251bb57f87459a6ef664c6321542b5cfccc.tar.gz
skyhanni-82a65251bb57f87459a6ef664c6321542b5cfccc.tar.bz2
skyhanni-82a65251bb57f87459a6ef664c6321542b5cfccc.zip
Feature: Pest Profit Tracker (#1321)
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 ac8ce0df7..1b8c2bdeb 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.pests.PestProfitTracker
import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorDropStatistics
import at.hannibal2.skyhanni.features.mining.KingTalismanHelper
import at.hannibal2.skyhanni.features.mining.powdertracker.PowderTracker
@@ -247,6 +248,10 @@ object Commands {
"Resets the Diana Profit Tracker"
) { DianaProfitTracker.resetCommand(it) }
registerCommand(
+ "shresetpestprofittracker",
+ "Resets the Pest Profit Tracker"
+ ) { PestProfitTracker.resetCommand(it) }
+ registerCommand(
"shresetmythologicalcreatureracker",
"Resets the Mythological Creature Tracker"
) { MythologicalCreatureTracker.resetCommand(it) }