fixed a little

This commit is contained in:
2026-07-11 12:30:16 +02:00
parent 652fe728e1
commit 476925c31b
7 changed files with 80 additions and 40 deletions
@@ -110,7 +110,7 @@ public class QuestsPanel {
summaryRow.padding(Insets.of(3, 0, 2, 2));
summaryRow.child(UIComponents.label(
Component.literal("Quests " + unlockedCount + "/" + quests.size())
Component.literal("quests " + unlockedCount + "/" + quests.size())
.withStyle(style -> style.withFont(new FontDescription.Resource(MyScreen.MC_FIVE))))
.color(Color.ofRgb(0xa3a3ac)));
@@ -152,10 +152,10 @@ public class QuestsPanel {
private static List<QuestData> quests() {
return List.of(
new QuestData("First Steps", "Play for 5 minutes", 300),
new QuestData("Getting Started", "Play for 30 minutes", 1800),
new QuestData("Dedicated Player", "Play for 1 hour", 3600),
new QuestData("Veteran", "Play for 3 hours", 10800)
new QuestData("first steps", "Play for 5 minutes", 300),
new QuestData("getting started", "Play for 30 minutes", 1800),
new QuestData("dedicated player", "Play for 1 hour", 3600),
new QuestData("veteran", "Play for 3 hours", 10800)
);
}