use of co.aikar.commands.annotation.CatchUnknown in project RoseStacker by Rosewood-Development.
the class RoseCommand method onCommand.
@Default
@CatchUnknown
public void onCommand(CommandSender sender) {
LocaleManager localeManager = this.rosePlugin.getManager(LocaleManager.class);
String baseColor = localeManager.getLocaleMessage("base-command-color");
localeManager.sendCustomMessage(sender, baseColor + "Running <g:#8A2387:#E94057:#F27121>RoseStacker" + baseColor + " v" + this.rosePlugin.getDescription().getVersion());
localeManager.sendCustomMessage(sender, baseColor + "Plugin created by: <g:#41e0f0:#ff8dce>" + this.rosePlugin.getDescription().getAuthors().get(0));
localeManager.sendSimpleMessage(sender, "base-command-help");
}
Aggregations