Paul2708 / simple-commands

An (even more) simplified and intuitive command framework for Spigot.
MIT License
14 stars 2 forks source link

Override existing commands #13

Closed Paul2708 closed 4 years ago

Paul2708 commented 4 years ago

Description

A simple command (command by annotation) can override existing commands.

Example

@Command(name = "help")
public void sendHelp(CommandSender sender) {
  sender.sendMessage("Custom help message");
}
Paul2708 commented 4 years ago

Command overriding already works.