diff options
| author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-09-07 07:05:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-07 07:05:45 +0200 |
| commit | 02c9ce15e053d5d0751c32ea3ef481c9eef7a904 (patch) | |
| tree | ee7f200d2e4ba2555aaa54b336d3d0ecbc47558f /src/main/java/at/hannibal2/skyhanni/config/commands | |
| parent | 78ce109b8fe6291340067771217b6965d82d76c2 (diff) | |
| download | skyhanni-02c9ce15e053d5d0751c32ea3ef481c9eef7a904.tar.gz skyhanni-02c9ce15e053d5d0751c32ea3ef481c9eef7a904.tar.bz2 skyhanni-02c9ce15e053d5d0751c32ea3ef481c9eef7a904.zip | |
Feature: /shedittracker (#2448)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 5 |
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 f7101cd4b..edfdb2d7a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -12,6 +12,7 @@ import at.hannibal2.skyhanni.data.PartyAPI import at.hannibal2.skyhanni.data.SackAPI import at.hannibal2.skyhanni.data.ScoreboardData import at.hannibal2.skyhanni.data.TitleManager +import at.hannibal2.skyhanni.data.TrackerManager import at.hannibal2.skyhanni.data.bazaar.HypixelBazaarFetcher import at.hannibal2.skyhanni.features.bingo.card.BingoCardDisplay import at.hannibal2.skyhanni.features.bingo.card.nextstephelper.BingoNextStepHelper @@ -438,6 +439,10 @@ object Commands { "shresetpunchcard", "Resets the Rift Punchcard Artifact player list.", ) { PunchcardHighlight.clearList() } + registerCommand( + "shedittracker", + "Changes the tracked item amount for Diana, Fishing, Pest, Excavator, and Slayer Item Trackers.", + ) { TrackerManager.commandEditTracker(it) } } private fun developersDebugFeatures() { |
