Fixed issue with hasPermission returning false wrongly

By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot
2011-11-02 22:48:07 +00:00
parent 97d09bc106
commit 04ccdf16fd

View File

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