From a2d949f0e5f2736ff1853f9bb0ed94db6196eb86 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 2 Apr 2023 15:32:09 +0200 Subject: Added option to only show the minion tier above the minion --- src/main/java/at/hannibal2/skyhanni/config/features/Minions.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java index ce09318e9..521901161 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java @@ -11,6 +11,11 @@ public class Minions { @ConfigEditorBoolean public boolean nameDisplay = true; + @Expose + @ConfigOption(name = "Only Tier", desc = "Show only the tier number over the minion.") + @ConfigEditorBoolean + public boolean nameOnlyTier = false; + @ConfigOption(name = "Last Clicked", desc = "") @ConfigEditorAccordion(id = 0) public boolean lastClickedMinion = false; -- cgit