fixes and addition of '*' to match all unmatched users.

This commit is contained in:
kukelekuuk00 2013-03-16 10:10:29 +01:00 committed by KHobbits
parent 32099a4109
commit 0c82c61574
16 changed files with 84 additions and 23 deletions

View file

@ -461,7 +461,9 @@ public class Settings implements ISettings
{
return config.getConfigurationSection("list").getValues(false);
}
return new HashMap<String, Object>();
Map<String, Object> defaultMap = new HashMap<String, Object>();
defaultMap.put("User", "*");
return defaultMap;
}
@Override