diff options
author | Dylan <61059252+DylanBruner@users.noreply.github.com> | 2024-01-06 04:32:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-06 10:32:48 +0100 |
commit | c55ad5e0a58c8e7e26c1156401a65a4b47fefd3f (patch) | |
tree | 552aec6e7c47adf7b1c84ec38fdd9adfdb0d2ef7 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | c6fd06063d63d1df159fffe59ede65caa187a073 (diff) | |
download | skyhanni-c55ad5e0a58c8e7e26c1156401a65a4b47fefd3f.tar.gz skyhanni-c55ad5e0a58c8e7e26c1156401a65a4b47fefd3f.tar.bz2 skyhanni-c55ad5e0a58c8e7e26c1156401a65a4b47fefd3f.zip |
Feature: Add a reversed version of /shcroptime (#879)
Added /shcropsin and /shcroptime support for k and m numbers. #879
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 11f6de89a..f958591c1 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -25,6 +25,7 @@ import at.hannibal2.skyhanni.features.fishing.tracker.FishingProfitTracker import at.hannibal2.skyhanni.features.fishing.tracker.SeaCreatureTracker import at.hannibal2.skyhanni.features.garden.GardenAPI import at.hannibal2.skyhanni.features.garden.GardenCropTimeCommand +import at.hannibal2.skyhanni.features.garden.GardenCropsInCommand import at.hannibal2.skyhanni.features.garden.GardenNextJacobContest import at.hannibal2.skyhanni.features.garden.composter.ComposterOverlay import at.hannibal2.skyhanni.features.garden.farming.ArmorDropTracker @@ -153,6 +154,10 @@ object Commands { "Calculates with your current crop per second speed how long you need to farm a crop to collect this amount of items" ) { GardenCropTimeCommand.onCommand(it) } registerCommand( + "shcropsin", + "Calculates with your current crop per second how many items you can collect in this amount of time" + ) { GardenCropsInCommand.onCommand(it) } + registerCommand( "shrpcstart", "Manually starts the Discord Rich Presence feature" ) { DiscordRPCManager.startCommand() } |