aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-07-15 16:57:35 +0200
committerGitHub <noreply@github.com>2024-07-15 16:57:35 +0200
commit73f2443fc869127db948234a5fe8de277faacfba (patch)
tree20644bf9d1d90177cff878eed66a1e24aa0f0ed4 /src/main/java/at/hannibal2/skyhanni/config
parent82f2a2c6ea8c4b552cc5e65e27c397308fcb8989 (diff)
downloadskyhanni-73f2443fc869127db948234a5fe8de277faacfba.tar.gz
skyhanni-73f2443fc869127db948234a5fe8de277faacfba.tar.bz2
skyhanni-73f2443fc869127db948234a5fe8de277faacfba.zip
Improvement: own inventory support for estimate chest value (#2218)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/ChestValueConfig.java5
1 files changed, 5 insertions, 0 deletions
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
@@ -18,6 +18,11 @@ public class ChestValueConfig {
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
public boolean enableInDungeons = false;