diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-25 18:34:05 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-25 18:34:05 +0100 |
commit | 536b48a1ed3e91e376481a2db29e25fdf741d721 (patch) | |
tree | 71b6e4c1442c5e32001b3227313f09274d54fa18 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 6158fad969454925d201354169750be7ea8f0c04 (diff) | |
download | skyhanni-536b48a1ed3e91e376481a2db29e25fdf741d721.tar.gz skyhanni-536b48a1ed3e91e376481a2db29e25fdf741d721.tar.bz2 skyhanni-536b48a1ed3e91e376481a2db29e25fdf741d721.zip |
Added Garden Vacuum to item number as stack size.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java | 5 |
1 files changed, 3 insertions, 2 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 d689cc7b4..7a19fc368 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 @@ -70,10 +70,11 @@ public class InventoryConfig { "§bCollection Level", "§bRancher's Boots speed", "§bLarva Hook", - "§bDungeon Potion Level" + "§bDungeon Potion Level", + "§bVacuum (Garden)" } ) - public List<Integer> itemNumberAsStackSize = new ArrayList<>(Arrays.asList(3, 11, 12)); + public List<Integer> itemNumberAsStackSize = new ArrayList<>(Arrays.asList(3, 11, 12, 14)); @Expose @ConfigOption( |