Skip to content

Commit

Permalink
Store WorldGroupProfiles all-lowercase. Fixes #175
Browse files Browse the repository at this point in the history
  • Loading branch information
rogermb committed Jun 20, 2013
1 parent 286e776 commit eb387f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ final class YamlGroupManager extends AbstractGroupManager {
}

for (final WorldGroupProfile worldGroup : worldGroups) {
getGroupNames().put(worldGroup.getName(), worldGroup);
getGroupNames().put(worldGroup.getName().toLowerCase(), worldGroup);
}
}

Expand Down

0 comments on commit eb387f2

Please sign in to comment.