Fixed method signature change.

This commit is contained in:
Jeffrey Wardian 2012-12-11 11:40:29 -08:00
parent 28e229e409
commit 05707c6256
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -121,8 +121,8 @@ public class Permission_Privileges extends Permission {
@Override
public boolean playerAddGroup(String world, String player, String group) {
privs.getGroupManager().setGroup(player, group);
return true;
Group g = privs.getGroupManager().setGroup(player, group);
return g != null;
}
@Override