aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-22 17:19:36 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-22 17:19:36 +0200
commit12e8ec96cb2d79057344b706a44843166e891863 (patch)
treef4b45afbd9640d398895a181bda6bdabe82dacae /src/main/java/at/hannibal2/skyhanni/config
parentd3b2e23086bd9b974e34931eaafcd3e1596b9e6c (diff)
downloadskyhanni-12e8ec96cb2d79057344b706a44843166e891863.tar.gz
skyhanni-12e8ec96cb2d79057344b706a44843166e891863.tar.bz2
skyhanni-12e8ec96cb2d79057344b706a44843166e891863.zip
fixed wording, added support for missing previous floor check
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/DungeonConfig.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DungeonConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/DungeonConfig.java
index 7c00afcd0..9625dd68e 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/DungeonConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/DungeonConfig.java
@@ -169,6 +169,7 @@ public class DungeonConfig {
@ConfigOption(name = "Party Finder", desc = "")
@Accordion
public PartyFinderConfig partyFinder = new PartyFinderConfig();
+
public static class PartyFinderConfig {
@Expose
@ConfigOption(name = "Colored Class Level", desc = "Color class levels in Party Finder.")
@@ -187,9 +188,9 @@ public class DungeonConfig {
public boolean markPaidCarries = true;
@Expose
- @ConfigOption(name = "Mark Low Levels", desc = "Highlight groups with players at or below the specified level to make them easier to find/skip.")
+ @ConfigOption(name = "Mark Low Levels", desc = "Highlight groups with players at or below the specified class level to make them easier to find/skip.")
@ConfigEditorSlider(minValue = 0, maxValue = 50, minStep = 1)
- public int markGroupsBelowLevel = 0;
+ public int markBelowClassLevel = 0;
@Expose
@ConfigOption(name = "Mark Ineligible Groups", desc = "Highlight groups with requirements that you do not meet.")