diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-06-01 09:26:57 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-06-01 09:26:57 +0200 |
commit | a926a1ffe1edee456ede638c28e439fb3ae8958e (patch) | |
tree | 588009fb931b152a59141198895bbb022aa8989c /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | 1e9d11e39c7d7e68985d78e5b1f6f063fd8b4b52 (diff) | |
download | skyhanni-a926a1ffe1edee456ede638c28e439fb3ae8958e.tar.gz skyhanni-a926a1ffe1edee456ede638c28e439fb3ae8958e.tar.bz2 skyhanni-a926a1ffe1edee456ede638c28e439fb3ae8958e.zip |
better error format when no arguments in /shcropgoal
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 4 |
1 files changed, 1 insertions, 3 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 61b24c76c..611b57621 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -296,9 +296,7 @@ object Commands { registerCommand0( "shcropgoal", "Define a custom milestone goal for a crop.", - { - FarmingMilestoneCommand.setGoal(it.getOrNull(0), it.getOrNull(1)) - }, + { FarmingMilestoneCommand.setGoal(it) }, FarmingMilestoneCommand::onComplete ) registerCommand0( |