Daniel Ennis
Daniel Ennis
given: ```java @Subcommand("cgset|gset") @Description("Sets residence permissions for a residence group (all players in the group get the permissions), using a chest style interface") public void onResChestGFlagSet(Player player, @Flags("admin") Residence res,...
Like #121, replace the Guava multimaps with stuff from https://github.com/aikar/util
We need a page on the wiki that takes the selling points of ACF (ie in the README) and breaks it down into simple wordings on the basics of ACF....
Given: ```java class A implements Foo {} class B implements Foo {} class Command extends BaseCommand { @Dependency Foo foo; } manager.registerDependency(Foo.class, new A()); BaseCommand command = new Command(); manager.registerCommand(command);...
Provide first class support for JDA (Java Discord API) WIP has been made.
Goal is to automatically register ACF commands into Brigadier on Sponge and Bukkit. https://gist.github.com/Dinnerbone/7370a2846953eee2d8fc64514fb76de8
Provide a @Description type annotation for documenting purpose of command Provide mechanisms for automatic help display, such as failed to find subcommands
Need a way to handle permissions for webhook messages. Ideas: - WebhookPermissionResolver - custom resolver to parse names (ie: a bridge bot can identify who the sender is on IRC...
May need paper only as a feature, but provide way to auto handle unknown root commands, and provide list of commands /help style, mixing Aikar command and Bukkit Commands Relates...