From 6cc2646eaaec81581ec4914f3a656578323ead28 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Tue, 21 Feb 2023 14:41:53 +0100 Subject: Added skill and collection level as item stack. --- .../java/at/hannibal2/skyhanni/config/features/Inventory.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') 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 itemNumberAsStackSize = new ArrayList<>(Collections.singletonList(3)); + public List itemNumberAsStackSize = new ArrayList<>(Arrays.asList(3, 9)); @Expose @ConfigOption(name = "Sack Name", desc = "Show an abbreviation of the Sack name.") -- cgit