1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-14 10:34:41 +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 7cb23c1a46
commit 020b22070d

View File

@@ -462,7 +462,12 @@ public class Settings implements ISettings
return config.getConfigurationSection("list").getValues(false); return config.getConfigurationSection("list").getValues(false);
} }
Map<String, Object> defaultMap = new HashMap<String, Object>(); 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; return defaultMap;
} }