Register a subcommand without the base command
- Lingua principale
- Java
- Stelle
- 628
- Fork
- 150
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Hi, I would like to register a command like this: `myplugin reload`. How can I do that, so it shows in help?
I've tried doing it like this (code is written in Kotlin):
```kotlin
@CommandAlias("myplugin reload")
class MyPluginCommand : BaseCommand() {
@Default
fun onReload(sender: CommandSender) {
// Reload
}
}
```
When I execute `/help NameOfMyPlugin` I get this:

I get autocomplete:

But the command doesn't execute:

Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.