From 1e870d3d55b4965c24919c0a69bdd2fa4958b7f8 Mon Sep 17 00:00:00 2001 From: nea Date: Tue, 23 Aug 2022 18:20:16 +0200 Subject: Allow Drill bar to be absolute values --- src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/com/thatgravyboat/skyblockhud/config') 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.") -- cgit