aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-29 20:27:32 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-29 20:27:32 +0200
commita5c6116b3cf024ded69e58060a078a04776de6c4 (patch)
treea81e8a0f841ffd92000c4aece778c13f81fced3e /src/main/java/at/hannibal2/skyhanni/config/commands
parent71a6b08b376be7d742107df982905cac0d7ecf70 (diff)
downloadskyhanni-a5c6116b3cf024ded69e58060a078a04776de6c4.tar.gz
skyhanni-a5c6116b3cf024ded69e58060a078a04776de6c4.tar.bz2
skyhanni-a5c6116b3cf024ded69e58060a078a04776de6c4.zip
code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt4
1 files changed, 2 insertions, 2 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 73b6cb46d..acd280967 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -329,8 +329,8 @@ object Commands {
ClientCommandHandler.instance.registerCommand(
SimpleCommand(
name,
- createCommand(function),
- { a, b, c -> autoComplete(b) })
+ createCommand(function)
+ ) { _, b, _ -> autoComplete(b) }
)
commands.add(CommandInfo(name, description, currentCategory))
}