summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-29 12:17:44 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-29 12:17:44 +0200
commitcc59cccadf38cb263d5c035ac4f0b74d9adfe1ca (patch)
treec1873ef72fe65250482930be1a2e335377a8c0c7 /src/main/java/at/hannibal2/skyhanni/config
parent5d51537458f15aba4c2471de4749a67ca9cbe044 (diff)
downloadskyhanni-cc59cccadf38cb263d5c035ac4f0b74d9adfe1ca.tar.gz
skyhanni-cc59cccadf38cb263d5c035ac4f0b74d9adfe1ca.tar.bz2
skyhanni-cc59cccadf38cb263d5c035ac4f0b74d9adfe1ca.zip
Added Winter Time
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java30
1 files changed, 20 insertions, 10 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
index 00a85b441..1f6745f6c 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
@@ -46,19 +46,29 @@ public class MiscConfig {
@Expose
public Position petDisplayPos = new Position(-330, -15, false, true);
+ @ConfigOption(name = "Time Features", desc = "")
+ @Accordion
@Expose
- @ConfigOption(name = "Time", desc = "")
- @ConfigEditorAccordion(id = 1)
- public boolean time = false;
+ public TimeConfig time = new TimeConfig();
- @Expose
- @ConfigOption(name = "Real Time", desc = "Display the current computer time, a handy feature when playing in full-screen mode.")
- @ConfigEditorBoolean
- @ConfigAccordionId(id = 1)
- public boolean realTime = false;
+ public static class TimeConfig {
- @Expose
- public Position realTimePos = new Position(10, 10, false, true);
+ @Expose
+ @ConfigOption(name = "Real Time", desc = "Display the current computer time, a handy feature when playing in full-screen mode.")
+ @ConfigEditorBoolean
+ public boolean realTime = false;
+
+ @Expose
+ public Position realTimePos = new Position(10, 10, false, true);
+
+ @Expose
+ @ConfigOption(name = "Winter Time", desc = "While on the Winter Island, show a timer until Jerry's Workshop closes.")
+ @ConfigEditorBoolean
+ public boolean winterTime = true;
+
+ @Expose
+ public Position winterTimePos = new Position(10, 10, false, true);
+ }
@ConfigOption(name = "Hide Armor", desc = "")
@Accordion