summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorErymanthus[#5074] | (u/)RayDeeUx <51521765+RayDeeUx@users.noreply.github.com>2023-10-14 08:00:41 -0400
committerGitHub <noreply@github.com>2023-10-14 14:00:41 +0200
commitd1a9b5b3ea2a4a140fc1aa34db3ad8a79822391c (patch)
tree01be443e27c247e858c921318a354e5f00dbc601 /src/main/java/at/hannibal2/skyhanni/config
parent7a634386ec4dd842e946bd3ba331c0d565faf173 (diff)
downloadskyhanni-d1a9b5b3ea2a4a140fc1aa34db3ad8a79822391c.tar.gz
skyhanni-d1a9b5b3ea2a4a140fc1aa34db3ad8a79822391c.tar.bz2
skyhanni-d1a9b5b3ea2a4a140fc1aa34db3ad8a79822391c.zip
Addition: Ingame time GUI element (#503)
Added In-Game Date Display. #503
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
index 47b62e9e5..9403ebfc2 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
@@ -95,6 +95,25 @@ public class GUIConfig {
public Position realTimePosition = new Position(10, 10, false, true);
@Expose
+ @ConfigOption(name = "In-game Date", desc = "Show the in-game date of SkyBlock (like in Apec, §ebut with mild delays§7).\n(Though this one includes the SkyBlock year!)")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean inGameDateDisplay = true;
+
+ @Expose
+ public Position inGameDateDisplayPosition = new Position(10, 10, false, true);
+
+ @Expose
+ @ConfigOption(name = "In-game Date Refresh Rate", desc = "Change the amount of time in seconds you would like to refresh the in-game time display.")
+ @ConfigEditorSlider(
+ minValue = 1,
+ maxValue = 60,
+ minStep = 1
+ )
+ public int inGameDateDisplayRefreshSeconds = 10;
+
+
+ @Expose
@ConfigOption(name = "TPS Display", desc = "Show the TPS of the current server, like in Soopy.")
@ConfigEditorBoolean
@FeatureToggle