diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-25 17:52:12 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-25 17:52:12 +0100 |
commit | 6158fad969454925d201354169750be7ea8f0c04 (patch) | |
tree | fe395c39a590cc366c664206cebf14fc3f1c6db6 /src/main/java/at | |
parent | 12d9bcc957febaf1ebd521a38fe0f6a592472f9d (diff) | |
download | skyhanni-6158fad969454925d201354169750be7ea8f0c04.tar.gz skyhanni-6158fad969454925d201354169750be7ea8f0c04.tar.bz2 skyhanni-6158fad969454925d201354169750be7ea8f0c04.zip |
Made skill level as item number no longer default enabled.
Diffstat (limited to 'src/main/java/at')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java | 2 |
1 files changed, 1 insertions, 1 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 1794a20d0..d689cc7b4 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 @@ -73,7 +73,7 @@ public class InventoryConfig { "§bDungeon Potion Level" } ) - public List<Integer> itemNumberAsStackSize = new ArrayList<>(Arrays.asList(3, 9, 11, 12)); + public List<Integer> itemNumberAsStackSize = new ArrayList<>(Arrays.asList(3, 11, 12)); @Expose @ConfigOption( |