diff options
author | nea <romangraef@gmail.com> | 2022-08-23 18:20:16 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2022-08-23 18:20:16 +0200 |
commit | 1e870d3d55b4965c24919c0a69bdd2fa4958b7f8 (patch) | |
tree | d741b50ec639e723259e1d1341c7a8abc98d8c8e /src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java | |
parent | 50f5ff6cf4fb9fc37270114317d0192788c1c64e (diff) | |
download | SkyblockHud-Death-Defied-drillbar.tar.gz SkyblockHud-Death-Defied-drillbar.tar.bz2 SkyblockHud-Death-Defied-drillbar.zip |
Allow Drill bar to be absolute valuesdrillbar
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.") |