1.3.2 Release Notes
- Added support for sub-command aliases.
- Now framework allows users to create sub-commands without creating main command.
Supported Behaviours
Code (Java):
@Command
(
name
=
"test0",
aliases
=
{
"cmdName",
"name0.randomArg0"
}
// both will be registered
)
public
void test0
(CommandArguments arguments
)
{
}
@Command
(
name
=
"test1.arg1",
aliases
=
{
"oneWord",
"name.randomArg1"
}
// only second one will be registered
)
public
void test1
(CommandArguments arguments
)
{
}
Full Changelog:
1.3.1...1.3.2