diff options
author | Erymanthus[#5074] | (u/)RayDeeUx <51521765+RayDeeUx@users.noreply.github.com> | 2022-08-29 14:13:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-29 14:13:33 -0400 |
commit | d98eeb612bf0be34563c33381cd0422f2fc6d6c2 (patch) | |
tree | d741b50ec639e723259e1d1341c7a8abc98d8c8e /src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java | |
parent | 50f5ff6cf4fb9fc37270114317d0192788c1c64e (diff) | |
parent | 1e870d3d55b4965c24919c0a69bdd2fa4958b7f8 (diff) | |
download | skyblockhud-d98eeb612bf0be34563c33381cd0422f2fc6d6c2.tar.gz skyblockhud-d98eeb612bf0be34563c33381cd0422f2fc6d6c2.tar.bz2 skyblockhud-d98eeb612bf0be34563c33381cd0422f2fc6d6c2.zip |
Merge pull request #2 from romangraef/drillbar
Allow Drill bar to be absolute values
Diffstat (limited to 'src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java')
-rw-r--r-- | src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java index 1d937a6..f06ddff 100644 --- a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java +++ b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java @@ -375,9 +375,9 @@ public class SBHConfig extends Config { @Expose @ConfigOption(name = "Show Drill Bar", desc = "Allows you to show or hide the Drill Bar.") - @ConfigEditorBoolean @ConfigAccordionId(id = 4) - public boolean showDrillBar = true; + @ConfigEditorDropdown(values = {"Do not Show", "Show percentage", "Show total value"}, initialIndex = 1) + public int showDrillBar = 1; @Expose @ConfigOption(name = "Show Heat Bar", desc = "Allows you to show or hide the Heat Bar.") |