Apparently some people see red flag and think those are broken.

This has unfortunately happened more than 2 times.
This commit is contained in:
wizjany 2019-03-02 13:14:01 -05:00
parent cc988c0b5a
commit 9ea2312751

View File

@ -516,7 +516,7 @@ public void flag(CommandContext args, Actor sender) throws CommandException {
if (i % 2 == 0) {
list.append(Style.GRAY);
} else {
list.append(Style.RED);
list.append(Style.WHITE);
}
list.append(flag);
@ -526,7 +526,7 @@ public void flag(CommandContext args, Actor sender) throws CommandException {
}
sender.printError("Unknown flag specified: " + flagName);
sender.printError("Available flags: " + list);
sender.print(Style.YELLOW + "Available flags: " + list);
return;
}