Added overload to get subcmds without a cmd object
This commit is contained in:
parent
8dfea2032f
commit
656e136b49
1 changed files with 13 additions and 2 deletions
|
@ -31,11 +31,22 @@ public class TBMCChatAPI {
|
|||
* @return The subcommands
|
||||
*/
|
||||
public static String[] GetSubCommands(TBMCCommandBase command) {
|
||||
return GetSubCommands(command.GetCommandPath());
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns messages formatted for Minecraft chat listing the subcommands of the command.
|
||||
*
|
||||
* @param command
|
||||
* The command which we want the subcommands of
|
||||
* @return The subcommands
|
||||
*/
|
||||
public static String[] GetSubCommands(String command) {
|
||||
ArrayList<String> cmds = new ArrayList<String>();
|
||||
cmds.add("§6---- Subcommands ----");
|
||||
for (TBMCCommandBase cmd : TBMCChatAPI.GetCommands().values()) {
|
||||
if (cmd.GetCommandPath().startsWith(command.GetCommandPath() + " ")) {
|
||||
int ind = cmd.GetCommandPath().indexOf(' ', command.GetCommandPath().length() + 2);
|
||||
if (cmd.GetCommandPath().startsWith(command + " ")) {
|
||||
int ind = cmd.GetCommandPath().indexOf(' ', command.length() + 2);
|
||||
if (ind >= 0)
|
||||
continue;
|
||||
cmds.add("/" + cmd.GetCommandPath());
|
||||
|
|
Loading…
Reference in a new issue