From e5004a6748110ea35d075050cbf4a59bfe64b62b Mon Sep 17 00:00:00 2001 From: J10a1n15 <45315647+j10a1n15@users.noreply.github.com> Date: Sun, 21 Jan 2024 12:15:13 +0100 Subject: Feature: Colored month in scoreboard (#926) Color the month names in the Scoreboard. #926 --- .../at/hannibal2/skyhanni/config/features/misc/MiscConfig.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') 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 @@ -125,6 +126,12 @@ public class MiscConfig { @FeatureToggle 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 -- cgit