LiteCommands icon indicating copy to clipboard operation
LiteCommands copied to clipboard

add ability to disable suggesting subcommand alias

Open SfenKer opened this issue 2 years ago • 0 comments

Example:

@Execute(
  name = "join",
  aliases = {
    @Alias("dolacz"),
    @Alias(value = "j", suggest = false)
  }
)
public void command(@Context Player player) {
...
}

Meaning: Only join and dolacz is suggested for player.

SfenKer avatar Dec 27 '23 22:12 SfenKer