However, instead of fixing the correct position of the root command, it just allows the aliases to not work, as the default implementation of BukkitCommand doesn't include the correct command aliases of CommandInfo, so it's empty when it should be registered from CommandMap:
The code below the source-code calls for the register method of the CommandMap due to fixing the correct position of the root command. https://github.com/saiintbrisson/command-framework/blob/ad6ed18e914f7cf1f2ae2c9ef0d0e3f7e2d39f31/bukkit/src/main/java/me/saiintbrisson/bukkit/command/BukkitFrame.java#L145
However, instead of fixing the correct position of the root command, it just allows the aliases to not work, as the default implementation of
BukkitCommand
doesn't include the correct command aliases ofCommandInfo
, so it's empty when it should be registered fromCommandMap
: