From 5f10fc9d3938e47baf3fe40fa50e49c564031c36 Mon Sep 17 00:00:00 2001 From: Lorenz Date: Mon, 22 Aug 2022 04:04:49 +0200 Subject: show crimson armor as stack size and in item name --- .../java/at/hannibal2/skyhanni/config/features/Inventory.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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 a85172d46..a756d1725 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java @@ -27,7 +27,8 @@ public class Inventory { "\u00a7bDungeon Head Floor Number", "\u00a7bNew Year Cake", "\u00a7bPet Level", - "\u00a7bMinion Tier" + "\u00a7bMinion Tier", + "\u00a7bCrimson Armor", } ) public List itemNumberAsStackSize = new ArrayList<>(); @@ -41,4 +42,10 @@ public class Inventory { @ConfigOption(name = "Anvil Combine Helper", desc = "Suggests the same item in the inventory when trying to combine two items in the anvil.") @ConfigEditorBoolean public boolean anvilCombineHelper = false; + + @Expose + @ConfigOption(name = "Crimson Armor Stars", + desc = "Show a compact star count in the item name for the Aurora, Crimson, Terror and Fervor armor") + @ConfigEditorBoolean + public boolean crimsonArmorStars = false; } -- cgit