From 8024af3c90343899ace8060f2ddda427e6c7dc10 Mon Sep 17 00:00:00 2001 From: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> Date: Sat, 20 Jan 2024 10:08:30 +0100 Subject: Backend: ItemCategory + better LorenzeRarity (#811) Categorizes every item using the rarity lore line. Also a better way of getting the item rarity Rarity #811 --- .../java/at/hannibal2/skyhanni/config/features/dev/DebugConfig.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/dev/DebugConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/dev/DebugConfig.java index 7aba8033b..9b7db7584 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/dev/DebugConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/dev/DebugConfig.java @@ -41,6 +41,11 @@ public class DebugConfig { @ConfigEditorBoolean public boolean showItemRarity = false; + @Expose + @ConfigOption(name = "Show Item Category", desc = "Show item categories in item lore.") + @ConfigEditorBoolean + public boolean showItemCategory = false; + @Expose @ConfigOption(name = "Copy Internal Name", desc = "Copies the internal name of an item on key press in the clipboard.") @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) -- cgit