aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-03-17 18:23:46 +0100
committerGitHub <noreply@github.com>2024-03-17 18:23:46 +0100
commitf72cf9906a49736948a353fceb135e49b3f041b5 (patch)
tree012116f3b0594b01ac95b2a8c863fa4c39c14502 /src/main/java/at/hannibal2/skyhanni/config/features
parentccf598ce287b3f179e65827c3a4caa05b75d3beb (diff)
downloadskyhanni-f72cf9906a49736948a353fceb135e49b3f041b5.tar.gz
skyhanni-f72cf9906a49736948a353fceb135e49b3f041b5.tar.bz2
skyhanni-f72cf9906a49736948a353fceb135e49b3f041b5.zip
Feature: Thaumaturgy Tuning in Custom Scoreboard (#1201)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/DisplayConfig.java10
1 files changed, 10 insertions, 0 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 4f7a7c91a..5485dcf32 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
@@ -103,6 +103,16 @@ public class DisplayConfig {
public boolean colorArrowAmount = false;
@Expose
+ @ConfigOption(name = "Compact Tuning", desc = "Show tuning stats compact")
+ @ConfigEditorBoolean
+ public boolean compactTuning = false;
+
+ @Expose
+ @ConfigOption(name = "Tuning Amount", desc = "Only show the first # tunings.\n§cDoes not work with Compact Tuning.")
+ @ConfigEditorSlider(minValue = 1, maxValue = 8, minStep = 1)
+ public int tuningAmount = 2;
+
+ @Expose
@ConfigOption(name = "Line Spacing", desc = "The amount of space between each line.")
@ConfigEditorSlider(minValue = 0, maxValue = 20, minStep = 1)
public int lineSpacing = 10;