aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-02 23:30:22 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-02 23:30:22 +0100
commit27f0b207793ddedf406fd56521d0ae0537279661 (patch)
tree86eac7c15b1253536db7b781acc7019f0196bc64 /src/main/java/at/hannibal2/skyhanni/config/features
parentd3e11684c9efb0635f5199183f9b97ff748c54be (diff)
downloadskyhanni-27f0b207793ddedf406fd56521d0ae0537279661.tar.gz
skyhanni-27f0b207793ddedf406fd56521d0ae0537279661.tar.bz2
skyhanni-27f0b207793ddedf406fd56521d0ae0537279661.zip
code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java27
1 files changed, 14 insertions, 13 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 177c0b3ce..79df5cdd8 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
@@ -98,15 +98,15 @@ public class GUIConfig {
@Expose
@ConfigOption(name = "In-Game Date", desc = "")
@Accordion
- public InGameDateConfig inGameDateConfig = new InGameDateConfig();
+ public InGameDateConfig inGameDate = new InGameDateConfig();
public static class InGameDateConfig {
@Expose
@ConfigOption(
- name = "Enabled",
- desc = "Show the in-game date of SkyBlock (like in Apec, §ebut with mild delays§7).\n" +
- "(Though this one includes the SkyBlock year!)"
+ name = "Enabled",
+ 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
@@ -117,8 +117,8 @@ public class GUIConfig {
@Expose
@ConfigOption(
- name = "Use Scoreboard for Date",
- desc = "Uses the scoreboard instead to find the current month, date, and time. Greater \"accuracy\", depending on who's asking."
+ name = "Use Scoreboard for Date",
+ desc = "Uses the scoreboard instead to find the current month, date, and time. Greater \"accuracy\", depending on who's asking."
)
@ConfigEditorBoolean
@FeatureToggle
@@ -126,8 +126,8 @@ public class GUIConfig {
@Expose
@ConfigOption(
- name = "Show Sun/Moon",
- desc = "Show the sun or moon symbol seen on the scoreboard."
+ name = "Show Sun/Moon",
+ desc = "Show the sun or moon symbol seen on the scoreboard."
)
@ConfigEditorBoolean
@FeatureToggle
@@ -135,13 +135,14 @@ public class GUIConfig {
@Expose
@ConfigOption(
- name = "Refresh Rate",
- desc = "Change the time in seconds you would like to refresh the In-Game Date Display.\n§eNOTE: If \"Use Scoreboard for Date\" is enabled, this setting is ignored."
+ name = "Refresh Rate",
+ desc = "Change the time in seconds you would like to refresh the In-Game Date Display." +
+ "\n§eNOTE: If \"Use Scoreboard for Date\" is enabled, this setting is ignored."
)
@ConfigEditorSlider(
- minValue = 1,
- maxValue = 60,
- minStep = 1
+ minValue = 1,
+ maxValue = 60,
+ minStep = 1
)
public int refreshSeconds = 30;
}