From 73f2443fc869127db948234a5fe8de277faacfba Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal002@users.noreply.github.com> Date: Mon, 15 Jul 2024 16:57:35 +0200 Subject: Improvement: own inventory support for estimate chest value (#2218) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../skyhanni/config/features/inventory/ChestValueConfig.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/ChestValueConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/ChestValueConfig.java index 5f4300865..922d2d401 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/ChestValueConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/ChestValueConfig.java @@ -17,6 +17,11 @@ public class ChestValueConfig { @FeatureToggle public boolean enabled = false; + @Expose + @ConfigOption(name = "Enabled in own Inventory", desc = "Enable the feature for your own inventory.") + @ConfigEditorBoolean + public boolean enableInOwnInventory = false; + @Expose @ConfigOption(name = "Enabled in dungeons", desc = "Enable the feature in dungeons.") @ConfigEditorBoolean -- cgit