diff --git a/src/main/kotlin/command/resolver/TreeCommand.kt b/src/main/kotlin/command/resolver/TreeCommand.kt index 4dd2b58..74d5929 100644 --- a/src/main/kotlin/command/resolver/TreeCommand.kt +++ b/src/main/kotlin/command/resolver/TreeCommand.kt @@ -29,7 +29,7 @@ abstract class TreeCommand for (subCommand in subCommandObjects.filter { !it.isAlias }) for (command in subCommand.subtree.commands) - functions += PrefixedCommandSignature(subCommand.field + " " + command.name, command) + functions += PrefixedCommandSignature(subCommand.field, command) functions }