Compare commits

...

1 Commits

Author SHA1 Message Date
f241b4acfe fix: account for false permissions when checking range
- Fixes #3905
2023-03-17 18:46:49 +00:00

View File

@ -176,6 +176,10 @@ public class BukkitPlayer extends PlotPlayer<Player> {
final Set<PermissionAttachmentInfo> effective = player.getEffectivePermissions();
if (!effective.isEmpty()) {
for (PermissionAttachmentInfo attach : effective) {
// Ignore all "false" permissions
if (!attach.getValue()) {
continue;
}
String permStr = attach.getPermission();
if (permStr.startsWith(stubPlus)) {
hasAny = true;