update blessing color

This commit is contained in:
Anthony Calosa
2023-04-11 19:49:25 +08:00
parent 91fd2d6d93
commit cfa8a82500

View File

@@ -198,9 +198,9 @@ public class PlayerStatisticScene extends UIScene {
} }
if (blessingScroll != null) { if (blessingScroll != null) {
if (Current.player().getBlessing() != null) { if (Current.player().getBlessing() != null) {
blessingScroll.setText(Current.player().getBlessing().getDescription()); blessingScroll.setText("[BLACK]" + Current.player().getBlessing().getDescription());
} else { } else {
blessingScroll.setText("No blessing."); blessingScroll.setText("[BLACK]No blessing.");
} }
} }