fixed a little
This commit is contained in:
@@ -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)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user