summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-12-27 20:12:25 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-12-27 20:12:25 +0100
commit2b330c3505f34b2b9ac7fed116237983eacc098d (patch)
tree41780b250b7222ee5cc77c009030d0f013ced0a2 /src/main/java/at/hannibal2/skyhanni/config/features
parent898947156b64e45cc5a0133c12aa73811d3e16f5 (diff)
downloadskyhanni-2b330c3505f34b2b9ac7fed116237983eacc098d.tar.gz
skyhanni-2b330c3505f34b2b9ac7fed116237983eacc098d.tar.bz2
skyhanni-2b330c3505f34b2b9ac7fed116237983eacc098d.zip
Add catacombs class level color to party finder
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java b/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java
index 40f58df81..f706446a1 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java
@@ -149,6 +149,16 @@ public class Dungeon {
@ConfigAccordionId(id = 5)
public Position copilotPos = new Position(10, 10, false, true);
+ @ConfigOption(name = "Party Finder", desc = "")
+ @ConfigEditorAccordion(id = 6)
+ public boolean partyFinder = false;
+
+ @Expose
+ @ConfigOption(name = "Colored Class Level", desc = "Show the class levels in party finder in colors.")
+ @ConfigAccordionId(id = 6)
+ @ConfigEditorBoolean
+ public boolean partyFinderColoredClassLevel = true;
+
@Expose
@ConfigOption(name = "Moving Skeleton Skulls", desc = "Highlight Skeleton Skulls when combining into a " +
"Skeletor in orange color (not useful combined with feature Hide Skeleton Skull)")