CommandAPI version
9.3.0
Minecraft version
1.20.4
Are you shading the CommandAPI?
Yes
What I did
new CommandAPICommand("invite")
.withShortDescription("Allow a player to join the server")
.withArguments(new MultiLiteralArgument("type", "java", "bedrock"))
.withArguments(new StringArgument("player"))
.executes(
(CommandSender sender, CommandArguments args) ->
...
What actually happened
> help invite
[22:28:16 INFO]: --------- Help: /invite -------------------------
[22:28:16 INFO]: Allow a player to join the server
[22:28:16 INFO]: Usage:
[22:28:16 INFO]: - /invite <type> <player>
[22:28:16 INFO]: - /invite <type> <player>
What should have happened
> help invite
[22:28:16 INFO]: --------- Help: /invite -------------------------
[22:28:16 INFO]: Allow a player to join the server
[22:28:16 INFO]: Usage:
[22:28:16 INFO]: - /invite java <player>
[22:28:16 INFO]: - /invite bedrock <player>
Ideally if the number of options is small (eg. <= 5) all options should be listed, otherwise just one line with the name:
> help invite
[22:28:16 INFO]: --------- Help: /invite -------------------------
[22:28:16 INFO]: Allow a player to join the server
[22:28:16 INFO]: Usage:
[22:28:16 INFO]: - /invite <type> <player>
Server logs and CommandAPI config
No response
Other
No response
CommandAPI version
9.3.0
Minecraft version
1.20.4
Are you shading the CommandAPI?
Yes
What I did
What actually happened
What should have happened
Ideally if the number of options is small (eg. <= 5) all options should be listed, otherwise just one line with the name:
Server logs and CommandAPI config
No response
Other
No response