diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-05-08 23:32:18 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-05-08 23:32:18 +0200 |
commit | 8b63debfd5b6f822a7b6fc0ac49d1ebc3d3fb3a2 (patch) | |
tree | 9413b48452b5f7b2dd48c0a9936e6deca5f621f8 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | 55c2614cb69551363607cbdb7f42c38eccd3d38e (diff) | |
download | skyhanni-8b63debfd5b6f822a7b6fc0ac49d1ebc3d3fb3a2.tar.gz skyhanni-8b63debfd5b6f822a7b6fc0ac49d1ebc3d3fb3a2.tar.bz2 skyhanni-8b63debfd5b6f822a7b6fc0ac49d1ebc3d3fb3a2.zip |
Added debug command /shshowcropmoneycalculation
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 2 |
1 files changed, 2 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 65390f4b2..26bb65e56 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.features.event.diana.InquisitorWaypointShare import at.hannibal2.skyhanni.features.garden.GardenAPI import at.hannibal2.skyhanni.features.garden.GardenCropTimeCommand import at.hannibal2.skyhanni.features.garden.composter.ComposterOverlay +import at.hannibal2.skyhanni.features.garden.farming.CropMoneyDisplay import at.hannibal2.skyhanni.features.garden.farming.CropSpeedMeter import at.hannibal2.skyhanni.features.minion.MinionFeatures import at.hannibal2.skyhanni.features.misc.CollectionCounter @@ -68,6 +69,7 @@ object Commands { registerCommand("shtestgardenvisitors") { SkyHanniTestCommand.testGardenVisitors() } registerCommand("shtestcomposter") { ComposterOverlay.onCommand(it) } registerCommand("shtestinquisitor") { InquisitorWaypointShare.test() } + registerCommand("shshowcropmoneycalculation") { CropMoneyDisplay.toggleShowCalculation() } // for developers - coding help registerCommand("shreloadlocalrepo") { SkyHanniMod.repo.reloadLocalRepo() } |