From c55ad5e0a58c8e7e26c1156401a65a4b47fefd3f Mon Sep 17 00:00:00 2001 From: Dylan <61059252+DylanBruner@users.noreply.github.com> Date: Sat, 6 Jan 2024 04:32:48 -0500 Subject: Feature: Add a reversed version of /shcroptime (#879) Added /shcropsin and /shcroptime support for k and m numbers. #879 --- src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands') 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 @@ -152,6 +153,10 @@ object Commands { "shcroptime", "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" -- cgit