mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 12:43:52 -07:00
Fixed 'bad aliases' error output.
By: EvilSeph <evilseph@unaligned.org>
This commit is contained in:
@@ -162,9 +162,7 @@ public final class SimpleCommandMap implements CommandMap {
|
||||
Command command = getCommand(name);
|
||||
|
||||
if (command == null) {
|
||||
if (bad.length() > 0) {
|
||||
bad += ", ";
|
||||
}
|
||||
bad += name + ", ";
|
||||
} else {
|
||||
targets.add(command);
|
||||
}
|
||||
@@ -179,6 +177,7 @@ public final class SimpleCommandMap implements CommandMap {
|
||||
}
|
||||
|
||||
if (bad.length() > 0) {
|
||||
bad = bad.substring(0, bad.length() - 2);
|
||||
server.getLogger().warning("The following command(s) could not be aliased under '" + alias + "' because they do not exist: " + bad);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user