From 60a1fe8170c49abfc7d416d0f9f0e0a1f1c5e8f2 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 24 Sep 2023 09:46:48 +0200 Subject: Fixed item lore flickering when debug feature internal name is enabled. --- src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java index 2c5189bbc..5c0a2e286 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java @@ -52,6 +52,12 @@ public class DevConfig { @ConfigAccordionId(id = 0) public boolean showEmptyNames = false; + @Expose + @ConfigOption(name = "Show Item Rarity", desc = "Show item rarities in item lore.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean showItemRarity = 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