aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-09-28 12:13:10 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-09-28 12:13:10 +0200
commitf7441f5d4404d52299b37a84ff0ec1e14ac7fa92 (patch)
tree56810f234a4f244d4d9434a25cd3e088467b98b2 /src/main/java/at/hannibal2/skyhanni/config
parenta38f1a3f6fac894f62ed6f80a332a167a030ea4c (diff)
downloadskyhanni-f7441f5d4404d52299b37a84ff0ec1e14ac7fa92.tar.gz
skyhanni-f7441f5d4404d52299b37a84ff0ec1e14ac7fa92.tar.bz2
skyhanni-f7441f5d4404d52299b37a84ff0ec1e14ac7fa92.zip
stats tuning
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java
index ad0a32b74..7e7b35bf5 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java
@@ -87,4 +87,32 @@ public class Inventory {
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
public boolean rngMeterSelectedDrop = false;
+
+ @ConfigOption(name = "Stats Tuning", desc = "")
+ @ConfigEditorAccordion(id = 2)
+ public boolean statsTuning = false;
+
+ @Expose
+ @ConfigOption(name = "Selected Stats", desc = "Show the tuning stats in the Thaumaturgy inventory.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 2)
+ public boolean statsTuningSelectedStats = false;
+
+ @Expose
+ @ConfigOption(name = "Tuning Points", desc = "Show the amount of selected tuning points in the stats tuning inventory.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 2)
+ public boolean statsTuningPoints = false;
+
+ @Expose
+ @ConfigOption(name = "Selected Template", desc = "Highlight the selected template in the stats tuning inventory.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 2)
+ public boolean statsTuningSelectedTemplate = false;
+
+ @Expose
+ @ConfigOption(name = "Template Stats", desc = "Show the type of stats for the tuning point templates.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 2)
+ public boolean statsTuningTemplateStats = false;
}