Java Command Dispatch Framework - (Bukkit, Spigot, Paper, Sponge, Bungee, JDA, Velocity supported, generically usable anywhere)
This will allow use cases such as having a parent class with `@CommandAlias` so I do not have to add `@CommandAlias("mv")` to 20 different command classes. ```java @CommandAlias("mv") public abstract class CoreCommand extends MultiverseCommand { // ... } class CloneCommand extends CoreCommand { @Subcommand("clone") void onCloneCommand(...) { } } ``` And this will also me to create aliases to a command by extending the command class as such: ```java class LegacyAlias extends CloneCommand { @Override @CommandAlias("mvclone") void onCloneCommand(...) { super.onCloneCommand(...); } } ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by benwoo1110 and has received 3 comments.