fix lowercase colorname (#2094)

This commit is contained in:
zethnest
2020-05-21 21:32:48 +08:00
committed by GitHub
parent 42ba97f872
commit 1c9ad2266d
6 changed files with 6 additions and 6 deletions

View File

@@ -48,7 +48,7 @@ public class ContentDisplay{
for(BlockStat stat : map.keys()){
table.table(inset -> {
inset.left();
inset.add("[LIGHT_GRAY]" + stat.localized() + ":[] ").left();
inset.add("[lightgray]" + stat.localized() + ":[] ").left();
Array<StatValue> arr = map.get(stat);
for(StatValue value : arr){
value.display(inset);