fix workaround

This commit is contained in:
Jesse Boyd
2019-04-23 01:53:24 +10:00
parent 0c0d0104d7
commit 145af1e091

View File

@ -152,9 +152,9 @@ public class BukkitPlayer extends PlotPlayer {
// Workaround
for (PermissionAttachmentInfo attach : effective) {
String permStr = attach.getPermission();
Permission perm = Bukkit.getPluginManager().getPermission(permStr);
@NotNull PermissionDefault def = perm.getDefault();
if (!def.getValue(false)) return max;
if (permStr.startsWith("plots.") && !permStr.equals("plots.use")) {
return max;
}
}
CHECK_EFFECTIVE = false;
}