Fixed numerous bugs and improved performance
This commit is contained in:
parent
584515199d
commit
2ab7c27fd4
1 changed files with 5 additions and 8 deletions
|
@ -44,7 +44,7 @@ public class Commands implements CommandExecutor
|
|||
return true;
|
||||
}
|
||||
CommandBlock cmdblock = (CommandBlock) block.getState();
|
||||
acmdb.append(" ").append(cmdblock.getCommand());
|
||||
acmdb.append(cmdblock.getCommand());
|
||||
} else
|
||||
{
|
||||
if (args.length == 0)
|
||||
|
@ -52,18 +52,15 @@ public class Commands implements CommandExecutor
|
|||
sender.sendMessage("§cUsage: /" + alias + " <onecommand>");
|
||||
return true; //Why use the builtin usage shoing thing
|
||||
}
|
||||
for (String arg : args)
|
||||
acmdb.append(" ").append(arg);
|
||||
}
|
||||
String acmd = acmdb.toString();
|
||||
StringBuilder replace = new StringBuilder("(" + replacecmds[0]);
|
||||
for (int i = 1; i < replacecmds.length; i++)
|
||||
replace.append("|" + replacecmds[i]);
|
||||
replace.append(")");
|
||||
acmd = acmd.replaceAll("Command:\\/" + replace, "Command:/minecraft:$1")
|
||||
.replaceAll("Command\\:" + replace, "Command:minecraft:$1")
|
||||
.replaceAll(" " + replace + " ", " minecraft:$1 ");
|
||||
System.out.println(acmd); //TODO
|
||||
acmd = acmd.replaceAll("([^t]|^)( |:| \\/|:\\/)" + replace + " ",
|
||||
"$1$2minecraft:$3 ").replaceAll("\" (\\/*)minecraft:",
|
||||
"\"$1minecraft:"); //Tellraw
|
||||
Bukkit.getServer().dispatchCommand(Bukkit.getConsoleSender(), acmd);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue