Fixed issue with hasPermission returning false wrongly

This commit is contained in:
Nathan Adams 2011-11-02 22:48:07 +00:00
parent 9147301b2f
commit 841872d591

View File

@ -76,7 +76,7 @@ public class PermissibleBase implements Permissible {
if (perm != null) {
return perm.getDefault().getValue(isOp());
} else {
return false;
return Permission.DEFAULT_PERMISSION.getValue(isOp());
}
}
}