1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-10 08:34:17 +02:00

Pull the default list behavior from the old 'sort-list-by-groups' variable if it exists.

This commit is contained in:
KHobbits
2013-03-19 09:00:50 +00:00
parent 8eb61298d7
commit 1aa6ea13b5

View File

@@ -462,7 +462,12 @@ public class Settings implements ISettings
return config.getConfigurationSection("list").getValues(false);
}
Map<String, Object> defaultMap = new HashMap<String, Object>();
defaultMap.put("Players", "*");
if (config.getBoolean("sort-list-by-groups", false)) {
defaultMap.put("ListByGroup", "ListByGroup");
}
else {
defaultMap.put("Players", "*");
}
return defaultMap;
}