norbi pls pull #20
1 changed files with 4 additions and 3 deletions
|
@ -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", "");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue