make stale punishments gray

This commit is contained in:
cswhite2000 2017-07-07 04:43:51 -07:00
parent 9612858058
commit c918067eda
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public class PunishmentFormatter {
return ImmutableList.of(
Components.join(Components.space(), parts),
new Component(" > ").extra(new Component(punishment.reason(), ChatColor.YELLOW))
new Component(" > ").extra(new Component(punishment.reason(), punishment.stale() ? ChatColor.GRAY : ChatColor.YELLOW))
);
}