diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-21 14:41:53 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-21 14:41:53 +0100 |
commit | 6cc2646eaaec81581ec4914f3a656578323ead28 (patch) | |
tree | 7856da64b7ae34c28b0f913baf053156c97228dc /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 5ec63533e3eab6f5a1f62038f387d49f613216da (diff) | |
download | skyhanni-6cc2646eaaec81581ec4914f3a656578323ead28.tar.gz skyhanni-6cc2646eaaec81581ec4914f3a656578323ead28.tar.bz2 skyhanni-6cc2646eaaec81581ec4914f3a656578323ead28.zip |
Added skill and collection level as item stack.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java index d1a42c252..f4df59580 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java @@ -4,7 +4,7 @@ import at.hannibal2.skyhanni.config.core.config.annotations.*; import com.google.gson.annotations.Expose; import java.util.ArrayList; -import java.util.Collections; +import java.util.Arrays; import java.util.List; public class Inventory { @@ -103,10 +103,12 @@ public class Inventory { "§bMinion Tier", "§bCrimson Armor", "§bWishing Compass", - "§bKuudra Key" + "§bKuudra Key", + "§bSkill Level", + "§bCollection Level" } ) - public List<Integer> itemNumberAsStackSize = new ArrayList<>(Collections.singletonList(3)); + public List<Integer> itemNumberAsStackSize = new ArrayList<>(Arrays.asList(3, 9)); @Expose @ConfigOption(name = "Sack Name", desc = "Show an abbreviation of the Sack name.") |