aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/DisplayConfig.java3
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/InformationFilteringConfig.java5
2 files changed, 7 insertions, 1 deletions
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 f009533ba..874399cfd 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
@@ -9,7 +9,8 @@ import io.github.moulberry.moulconfig.annotations.ConfigOption;
public class DisplayConfig {
@Expose
- @ConfigOption(name = "Hide Vanilla Scoreboard", desc = "Hide the vanilla scoreboard.")
+ @ConfigOption(name = "Hide Vanilla Scoreboard", desc = "Hide the vanilla scoreboard." +
+ "\n§cUsing mods that add their own scoreboard will not be affected by this setting!")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideVanillaScoreboard = true;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/InformationFilteringConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/InformationFilteringConfig.java
index 02a8f83a0..47a0765fc 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/InformationFilteringConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/InformationFilteringConfig.java
@@ -16,6 +16,11 @@ public class InformationFilteringConfig {
public boolean hideConsecutiveEmptyLines = true;
@Expose
+ @ConfigOption(name = "Hide empty lines at top/bottom", desc = "Hide empty lines at the top or bottom of the scoreboard.")
+ @ConfigEditorBoolean
+ public boolean hideEmptyLinesAtTopAndBottom = true;
+
+ @Expose
@ConfigOption(name = "Hide non relevant info", desc = "Hide lines that are not relevant to the current location." +
"\n§cIt's generally not recommended to turn this off.")
@ConfigEditorBoolean