diff options
| author | Lorenz <lo.scherf@gmail.com> | 2022-08-22 04:04:49 +0200 |
|---|---|---|
| committer | Lorenz <lo.scherf@gmail.com> | 2022-08-22 04:04:49 +0200 |
| commit | 5f10fc9d3938e47baf3fe40fa50e49c564031c36 (patch) | |
| tree | 8a6aabf08938ff4722e7b3f4d9ab65fa756afde5 /src/main/java/at/hannibal2/skyhanni/config | |
| parent | 1021280302d684071a9bde3cf274a16913eb48ec (diff) | |
| download | skyhanni-5f10fc9d3938e47baf3fe40fa50e49c564031c36.tar.gz skyhanni-5f10fc9d3938e47baf3fe40fa50e49c564031c36.tar.bz2 skyhanni-5f10fc9d3938e47baf3fe40fa50e49c564031c36.zip | |
show crimson armor as stack size and in item name
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java | 9 |
1 files changed, 8 insertions, 1 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 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<Integer> 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; } |
