From b4648fe70ce0538325ed6df3ad068e9fe9237c0c Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 14 Oct 2023 16:18:03 +0200 Subject: Fixed bug that faction icons in crimson isle are always hidden. Added option to Advanced Player List to hide Crimson Isle faction icons. --- src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.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/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java index 5cd9d1611..081716f3f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java @@ -632,6 +632,11 @@ public class MiscConfig { @ConfigEditorBoolean public boolean showBingoRankNumber = false; + @Expose + @ConfigOption(name = "Hide Factions", desc = "Hide the icon of the Crimson Isle Faction in the tab list.") + @ConfigEditorBoolean + public boolean hideFactions = false; + @Expose @ConfigOption(name = "Mark Special Persons", desc = "Show speical icons behind the name of guild members, party members, friends, and marked players.") @ConfigEditorBoolean -- cgit