aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-07 22:54:04 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-07 22:54:04 +0100
commitfccea080f5b8eaf561e83dc62b84a3cd5ded5a8f (patch)
tree0f2c7e3ed7d30d014d4ee978098b5475e5fd30f9 /src/main/java/at/hannibal2/skyhanni/config/commands
parente0ef36326d439cfb376a44d005d3b8c7299c634b (diff)
downloadskyhanni-fccea080f5b8eaf561e83dc62b84a3cd5ded5a8f.tar.gz
skyhanni-fccea080f5b8eaf561e83dc62b84a3cd5ded5a8f.tar.bz2
skyhanni-fccea080f5b8eaf561e83dc62b84a3cd5ded5a8f.zip
Added more Armor Drop Tracker features. Added command /shresetarmordroptracker to reset the full data, added session support and added button to reset the current session.
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 3933ed081..c96dbab65 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -19,6 +19,7 @@ import at.hannibal2.skyhanni.features.garden.GardenAPI
import at.hannibal2.skyhanni.features.garden.GardenCropTimeCommand
import at.hannibal2.skyhanni.features.garden.GardenNextJacobContest
import at.hannibal2.skyhanni.features.garden.composter.ComposterOverlay
+import at.hannibal2.skyhanni.features.garden.farming.ArmorDropTracker
import at.hannibal2.skyhanni.features.garden.farming.CropMoneyDisplay
import at.hannibal2.skyhanni.features.garden.farming.CropSpeedMeter
import at.hannibal2.skyhanni.features.garden.farming.DicerDropTracker
@@ -168,6 +169,10 @@ object Commands {
"shresetendernodetracker",
"Resets the Ender Node Tracker"
) { EnderNodeTracker.resetCommand(it) }
+ registerCommand(
+ "shresetarmordroptracker",
+ "Resets the Armor Drop Tracker"
+ ) { ArmorDropTracker.resetCommand(it) }
registerCommand("shbingotoggle", "Toggle the bingo card display mode") { BingoCardDisplay.toggleCommand() }
registerCommand(
"shfarmingprofile",