From 461fa9c4ece3a85b9cac7f7247fcc0c71a4a31e3 Mon Sep 17 00:00:00 2001 From: Luna Date: Wed, 4 Sep 2024 11:19:12 +0200 Subject: Improvement: Allow turning off exact minutes on custom scoreboard (#2443) --- .../skyhanni/config/features/gui/customscoreboard/DisplayConfig.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/DisplayConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/DisplayConfig.java index e2c6dd6fa..0d61401ee 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/DisplayConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/DisplayConfig.java @@ -129,6 +129,11 @@ public class DisplayConfig { @ConfigEditorBoolean public boolean skyblockTime24hFormat = false; + @Expose + @ConfigOption(name = "SkyBlock Time Exact Minutes", desc = "Display the exact minutes in the SkyBlock time, rather than only 10 minute increments.") + @ConfigEditorBoolean + public boolean skyblockTimeExactMinutes = true; + @Expose @ConfigOption(name = "Line Spacing", desc = "The amount of space between each line.") @ConfigEditorSlider(minValue = 0, maxValue = 20, minStep = 1) -- cgit