mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-09 12:30:42 +01:00
Pull the default list behavior from the old 'sort-list-by-groups' variable if it exists.
This commit is contained in:
parent
2dda15d47f
commit
f5c17fc7c7
@ -462,7 +462,12 @@ public class Settings implements ISettings
|
||||
return config.getConfigurationSection("list").getValues(false);
|
||||
}
|
||||
Map<String, Object> defaultMap = new HashMap<String, Object>();
|
||||
if (config.getBoolean("sort-list-by-groups", false)) {
|
||||
defaultMap.put("ListByGroup", "ListByGroup");
|
||||
}
|
||||
else {
|
||||
defaultMap.put("Players", "*");
|
||||
}
|
||||
return defaultMap;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user