mirror of
https://github.com/aikar/commands.git
synced 2026-05-31 06:11:55 +00:00
fe1be188a4
```java
@CommandAlias("foo")
@Subcommand("bar")
class FooBarCommand {
@Default
public void onFooBar(CommandIssuer issuer) {}
}
```
Will now pass `/foo bar` to onFooBar.
Previously this required @Subcommand("") which was unintuitive