Short Commands are essentially commands you can mask to subcommands so you can execute subcommands using the short command. For example:
If you have a command called
/friends list but you want a command
/fl, typically you'd have to create a new class with the same exact code.
But now all you need to do is add
Code (Text):
shortCommands = {"fl"}
to your CommandInfo annotation and doing /fl will now work on your server.