aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-26 07:14:08 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-26 07:14:08 +0100
commitd279599080ba81c17d20c97a45c715caf72db8ef (patch)
tree5d1144c58a87b7b6d0a99ce7a9efe3f67cbb9fb6 /src/main/java/at/hannibal2/skyhanni/config
parent7eff3248e14e0ee5b5c100ce2f2458da5a79bc4c (diff)
downloadskyhanni-d279599080ba81c17d20c97a45c715caf72db8ef.tar.gz
skyhanni-d279599080ba81c17d20c97a45c715caf72db8ef.tar.bz2
skyhanni-d279599080ba81c17d20c97a45c715caf72db8ef.zip
Added option to enable/disable the vacuum bag item number being capped to 40.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java
index 7a19fc368..f411bebb7 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java
@@ -77,6 +77,11 @@ public class InventoryConfig {
public List<Integer> itemNumberAsStackSize = new ArrayList<>(Arrays.asList(3, 11, 12, 14));
@Expose
+ @ConfigOption(name = " Vacuum Bag Cap", desc = "Capping the Garden Vacuum Bag item number display to 40.")
+ @ConfigEditorBoolean
+ public boolean vacuumBagCap = true;
+
+ @Expose
@ConfigOption(
name = "Quick Craft Confirmation",
desc = "Require Ctrl+Click to craft items that aren't often quick crafted " +