aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorJ10a1n15 <45315647+j10a1n15@users.noreply.github.com>2024-01-21 12:15:13 +0100
committerGitHub <noreply@github.com>2024-01-21 12:15:13 +0100
commite5004a6748110ea35d075050cbf4a59bfe64b62b (patch)
treedd7d482a9543c83be531789700bb1857ec7647e1 /src/main/java/at/hannibal2/skyhanni/config/features
parente0299c912d8754d04bdcad9184a2a4763a10b0e8 (diff)
downloadskyhanni-e5004a6748110ea35d075050cbf4a59bfe64b62b.tar.gz
skyhanni-e5004a6748110ea35d075050cbf4a59bfe64b62b.tar.bz2
skyhanni-e5004a6748110ea35d075050cbf4a59bfe64b62b.zip
Feature: Colored month in scoreboard (#926)
Color the month names in the Scoreboard. #926
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/misc/MiscConfig.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/MiscConfig.java
index 757e5495b..fc7bac1e1 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/MiscConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/MiscConfig.java
@@ -20,7 +20,7 @@ public class MiscConfig {
@ConfigOption(name = "Hide Armor", desc = "")
@Accordion
@Expose
- // TOOD maybe we can migrate this already
+ // TODO maybe we can migrate this already
public HideArmorConfig hideArmor2 = new HideArmorConfig();
@Expose
@@ -113,6 +113,7 @@ public class MiscConfig {
@FeatureToggle
public boolean brewingStandOverlay = true;
+ // TODO move into scoreboard accordion
@Expose
@ConfigOption(name = "Red Scoreboard Numbers", desc = "Hide the red scoreboard numbers on the right side of the screen.")
@ConfigEditorBoolean
@@ -126,6 +127,12 @@ public class MiscConfig {
public boolean hidePiggyScoreboard = true;
@Expose
+ @ConfigOption(name = "Color Month Names", desc = "Color the month names in the Scoreboard.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean colorMonthNames = false;
+
+ @Expose
@ConfigOption(name = "Explosions Hider", desc = "Hide explosions.")
@ConfigEditorBoolean
@FeatureToggle