mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-12 03:59:22 +00:00
fixed errors
This commit is contained in:
parent
c9d6f78999
commit
5a842842a2
1 changed files with 5 additions and 5 deletions
|
@ -83,7 +83,7 @@ public class MainCommand implements CommandExecutor, TabCompleter {
|
||||||
new Unlink(),
|
new Unlink(),
|
||||||
new Kick(),
|
new Kick(),
|
||||||
new Setup(),
|
new Setup(),
|
||||||
new Rating(),
|
new Rate(),
|
||||||
new DebugClaimTest(),
|
new DebugClaimTest(),
|
||||||
new Inbox(),
|
new Inbox(),
|
||||||
new Comment(),
|
new Comment(),
|
||||||
|
@ -146,7 +146,7 @@ public class MainCommand implements CommandExecutor, TabCompleter {
|
||||||
cmd = commands.get(x);
|
cmd = commands.get(x);
|
||||||
String s = t(C.HELP_ITEM.s());
|
String s = t(C.HELP_ITEM.s());
|
||||||
s = s
|
s = s
|
||||||
.replace("%alias%", cmd.alias)
|
.replace("%alias%", cmd.alias.get(0))
|
||||||
.replace("%usage%", cmd.usage.contains("plot") ? cmd.usage : "/plot " + cmd.usage)
|
.replace("%usage%", cmd.usage.contains("plot") ? cmd.usage : "/plot " + cmd.usage)
|
||||||
.replace("%cmd%", cmd.cmd)
|
.replace("%cmd%", cmd.cmd)
|
||||||
.replace("%desc%", cmd.description)
|
.replace("%desc%", cmd.description)
|
||||||
|
@ -227,7 +227,7 @@ public class MainCommand implements CommandExecutor, TabCompleter {
|
||||||
//return PlayerFunctions.sendMessage(player, help.toString());
|
//return PlayerFunctions.sendMessage(player, help.toString());
|
||||||
} else {
|
} else {
|
||||||
for (final SubCommand command : subCommands) {
|
for (final SubCommand command : subCommands) {
|
||||||
if (command.cmd.equalsIgnoreCase(args[0]) || command.alias.equalsIgnoreCase(args[0])) {
|
if (command.cmd.equalsIgnoreCase(args[0]) || command.alias.contains(args[0].toLowerCase())) {
|
||||||
final String[] arguments = new String[args.length - 1];
|
final String[] arguments = new String[args.length - 1];
|
||||||
System.arraycopy(args, 1, arguments, 0, args.length - 1);
|
System.arraycopy(args, 1, arguments, 0, args.length - 1);
|
||||||
if (command.permission.hasPermission(player)) {
|
if (command.permission.hasPermission(player)) {
|
||||||
|
@ -280,8 +280,8 @@ public class MainCommand implements CommandExecutor, TabCompleter {
|
||||||
if (cmd.permission.hasPermission(player)) {
|
if (cmd.permission.hasPermission(player)) {
|
||||||
if (cmd.cmd.startsWith(arg)) {
|
if (cmd.cmd.startsWith(arg)) {
|
||||||
tabOptions.add(cmd.cmd);
|
tabOptions.add(cmd.cmd);
|
||||||
} else if (cmd.alias.startsWith(arg)) {
|
} else if (cmd.alias.get(0).startsWith(arg)) {
|
||||||
tabOptions.add(cmd.alias);
|
tabOptions.add(cmd.alias.get(0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue