summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-07 04:08:30 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-07 04:08:30 +0200
commitf25715ff6b010876cf2da64f8419bed5e2b2aa83 (patch)
treedb63541666d75b3f542db409ae7dd0ffd9257bd4 /src/main/java/at/hannibal2/skyhanni/config
parentd52f89085b2162d9af1fb537b44fdde8d0457462 (diff)
downloadskyhanni-f25715ff6b010876cf2da64f8419bed5e2b2aa83.tar.gz
skyhanni-f25715ff6b010876cf2da64f8419bed5e2b2aa83.tar.bz2
skyhanni-f25715ff6b010876cf2da64f8419bed5e2b2aa83.zip
add random
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java8
1 files changed, 4 insertions, 4 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 1dd24fc44..ddc3fafde 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
@@ -554,13 +554,13 @@ public class MiscConfig {
public boolean hideAdverts = false;
@Expose
- @ConfigOption(name = "Player Sort", desc = "Change what the player list is sorted by.")
- @ConfigEditorDropdown(values = {"Rank (Default)", "SB Level", "Name (Abc)", "Ironman/Bingo", "Party/Friends/Guild"})
+ @ConfigOption(name = "Player Sort", desc = "Change the sort order of player names in the tab list.")
+ @ConfigEditorDropdown(values = {"Rank (Default)", "SB Level", "Name (Abc)", "Ironman/Bingo", "Party/Friends/Guild", "Random"})
@ConfigAccordionId(id = 1)
- public int playerSort = 0;
+ public int playerSortOrder = 0;
@Expose
- @ConfigOption(name = "Invert Sort", desc = "Flip the player list on its head (also works with default rank).")
+ @ConfigOption(name = "Invert Sort", desc = "Flip the player list order on its head (also works with default rank).")
@ConfigEditorBoolean
public boolean reverseSort = false;
}