aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/miscgui
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2023-02-22 18:33:20 +0100
committerGitHub <noreply@github.com>2023-02-22 18:33:20 +0100
commitcf3f08e4fd340ab331a4b61c1159fb527027ade7 (patch)
treef0fa524ef72817eeab73bdacc6df0f360b646060 /src/main/java/io/github/moulberry/notenoughupdates/miscgui
parent30bd46e46aab73e2927fa5631c49ace84708e590 (diff)
downloadnotenoughupdates-cf3f08e4fd340ab331a4b61c1159fb527027ade7.tar.gz
notenoughupdates-cf3f08e4fd340ab331a4b61c1159fb527027ade7.tar.bz2
notenoughupdates-cf3f08e4fd340ab331a4b61c1159fb527027ade7.zip
Added Sky Mall to Dwarven Overlay (#604)
* Added Sky Mall to Dwarven Overlay. * Made SkyBlockTime a data object. * Added color to names and display item per different perk variant. * Added daySuffix support for days greater 10. * Data classes have a copy method already. * Green color does not work. * Fixed a bug in monthName. * Add Unit Tests and make use of Instant * Fixed Sky Mall overlay showing in crystal hollows. * 11st 12nd 13rd --------- Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Co-authored-by: nea <nea@nea.moe> Co-authored-by: nopo <nopotheemail@gmail.com>
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/miscgui')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/miscgui/CalendarOverlay.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/CalendarOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/CalendarOverlay.java
index 301a90b9..baea367c 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/CalendarOverlay.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/CalendarOverlay.java
@@ -129,11 +129,11 @@ public class CalendarOverlay {
private static final long HOUR = MINUTE * 60;
private static final long DAY = HOUR * 24;
- private static final long DA_OFFSET = 1000 * 60 * 55;
- private static final long JF_OFFSET = 1000 * 60 * 15;
+ private static final long DA_OFFSET = 1000 * 60 * 55; // Dark Auction
+ private static final long JF_OFFSET = 1000 * 60 * 15; // Jacob's Farming Contest
- private static final ItemStack DA_STACK;
- private static final ItemStack JF_STACK;
+ private static final ItemStack DA_STACK; // Dark Auction
+ private static final ItemStack JF_STACK; // Jacob's Farming Contest
static {
NBTTagCompound tag = new NBTTagCompound();