diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-14 16:18:03 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-14 16:18:03 +0200 |
commit | b4648fe70ce0538325ed6df3ad068e9fe9237c0c (patch) | |
tree | 90dc8bfcc55f63d03ec52e127d338c7a36725fa1 /src/main/java/at/hannibal2/skyhanni/config | |
parent | e514b16dbb8a7d95b77e95a7a51f8cc50cd31370 (diff) | |
download | skyhanni-b4648fe70ce0538325ed6df3ad068e9fe9237c0c.tar.gz skyhanni-b4648fe70ce0538325ed6df3ad068e9fe9237c0c.tar.bz2 skyhanni-b4648fe70ce0538325ed6df3ad068e9fe9237c0c.zip |
Fixed bug that faction icons in crimson isle are always hidden. Added option to Advanced Player List to hide Crimson Isle faction icons.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java | 5 |
1 files changed, 5 insertions, 0 deletions
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 @@ -633,6 +633,11 @@ public class MiscConfig { 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 public boolean markSpecialPersons = false; |