We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd04004 commit 95d1f34Copy full SHA for 95d1f34
src/main/java/de/hysky/skyblocker/skyblock/item/slottext/adders/CommunityShopAdder.java
@@ -49,7 +49,7 @@ private static List<SlotText> getTextForUpgradesScreen(Slot slot) {
49
return List.of(SlotText.bottomLeft(switch (lastLine) {
50
case "Maxed out!" -> Text.literal("Max").withColor(0xfab387);
51
case "Currently upgrading!" -> Text.literal("⏰").withColor(0xf9e2af).formatted(Formatting.BOLD);
52
- //Todo: Add the case for when the upgrade has finished and is ready to be claimed
+ case "Click to claim!" -> Text.literal("✅").withColor(0xa6e3a1).formatted(Formatting.BOLD);
53
default -> Text.literal(String.valueOf(RomanNumerals.romanToDecimal(roman))).withColor(0xcba6f7);
54
}));
55
0 commit comments