diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-22 17:19:36 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-22 17:19:36 +0200 |
commit | 12e8ec96cb2d79057344b706a44843166e891863 (patch) | |
tree | f4b45afbd9640d398895a181bda6bdabe82dacae /src/main/java/at/hannibal2/skyhanni/config | |
parent | d3b2e23086bd9b974e34931eaafcd3e1596b9e6c (diff) | |
download | skyhanni-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.java | 5 |
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.") |