norbi pls pull #20

Merged
alisolarflare merged 1 commit from Ali into master 2016-11-07 17:54:48 +00:00

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", "");
}