Switched OnCommand and GetHelpText

*GetHelpText wasn't with its friends and it's driving me CRAZY*
This commit is contained in:
alisolarflare 2016-11-06 18:16:46 -05:00
parent 4c10dfbf33
commit 5c96d23080

View file

@ -14,9 +14,7 @@ public abstract class TBMCCommandBase {
public TBMCCommandBase() {
}
public abstract String[] GetHelpText(String alias);
public abstract boolean OnCommand(CommandSender sender, String alias, String[] args);
/**
@ -28,6 +26,9 @@ public abstract class TBMCCommandBase {
*
* @return The command path, <i>which is the command class name by default</i> (removing any "command" from it)
*/
public abstract String[] GetHelpText(String alias);
public String GetCommandPath() {
return getClass().getSimpleName().toLowerCase().replace("command", "");
}