Add primary groups

This commit is contained in:
Luck
2016-06-24 18:38:05 +01:00
Unverified
parent 34ca3b3c25
commit 697b349167
12 changed files with 100 additions and 22 deletions
@@ -42,7 +42,7 @@ public class GroupManager {
* @param group The group to update or set
*/
public void updateOrSetGroup(Group group) {
if (!groups.containsKey(group.getName())) {
if (!isLoaded(group.getName())) {
// The group isn't already loaded
groups.put(group.getName(), group);
} else {