Removed gold color from CommandUsageBox for command help.

This commit is contained in:
sk89q 2014-06-30 23:03:46 -07:00
parent 88f0f1061a
commit f0530f9d28

View File

@ -89,7 +89,7 @@ public class CommandUsageBox extends StyledFragment {
contents.newLine();
if (description.getHelp() != null) {
contents.createFragment(Style.YELLOW_DARK).append(description.getHelp());
contents.append(description.getHelp());
} else if (description.getShortDescription() != null) {
contents.append(description.getShortDescription());
} else {