From 248edea686fb2580a339b2ca0c3668f3f1da0ff7 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 30 Oct 2023 15:16:08 +0100 Subject: Added option to hide chest value while estimated item value display is showing. --- .../java/at/hannibal2/skyhanni/config/features/InventoryConfig.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java index 3c6c75056..d1bf61efa 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java @@ -244,6 +244,12 @@ public class InventoryConfig { @FeatureToggle public boolean enableInDungeons = false; + @Expose + @ConfigOption(name = "Enable during Item Value", desc = "Show this display even if the Estimated Item Value is visible.") + @ConfigEditorBoolean + @FeatureToggle + public boolean showDuringEstimatedItemValue = false; + @Expose @ConfigOption(name = "Show Stacks", desc = "Show the item icon before name.") @ConfigEditorBoolean -- cgit