diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-04 00:49:30 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-04 00:49:30 +0100 |
commit | 229b8885b8f006b32e47a046ad5594ea92842168 (patch) | |
tree | 20289b3cb7418d77ad329ac690e6cbf214cf489b /src/main | |
parent | ca07bed0e0573b551063690d74e821a40abaaf1e (diff) | |
download | skyhanni-229b8885b8f006b32e47a046ad5594ea92842168.tar.gz skyhanni-229b8885b8f006b32e47a046ad5594ea92842168.tar.bz2 skyhanni-229b8885b8f006b32e47a046ad5594ea92842168.zip |
Stats tuning default enabled
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java | 8 |
1 files changed, 4 insertions, 4 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 5f2b46ca8..a86e8a5a2 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java @@ -68,25 +68,25 @@ public class Inventory { @ConfigOption(name = "Selected Stats", desc = "Show the tuning stats in the Thaumaturgy inventory.") @ConfigEditorBoolean @ConfigAccordionId(id = 2) - public boolean statsTuningSelectedStats = false; + public boolean statsTuningSelectedStats = true; @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; + public boolean statsTuningPoints = true; @Expose @ConfigOption(name = "Selected Template", desc = "Highlight the selected template in the stats tuning inventory.") @ConfigEditorBoolean @ConfigAccordionId(id = 2) - public boolean statsTuningSelectedTemplate = false; + public boolean statsTuningSelectedTemplate = true; @Expose @ConfigOption(name = "Template Stats", desc = "Show the type of stats for the tuning point templates.") @ConfigEditorBoolean @ConfigAccordionId(id = 2) - public boolean statsTuningTemplateStats = false; + public boolean statsTuningTemplateStats = true; @Expose @ConfigOption( |