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 2dda15d47f
commit f5c17fc7c7

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;
}