Fix: remove unnecessary bypass permission (#2060)

Fix: remove unnecessary permission
This commit is contained in:
TheJonstone✓
2023-01-16 00:34:28 +01:00
committed by GitHub
parent ae57ac5d50
commit 0f558425f5
2 changed files with 3 additions and 3 deletions

View File

@ -530,7 +530,7 @@ public final class EditSessionBuilder {
}
}
if (allowedRegions == null && Settings.settings().REGION_RESTRICTIONS) {
if (actor != null && !actor.hasPermission("fawe.bypass") && !actor.hasPermission("fawe.bypass.regions")) {
if (actor != null && !actor.hasPermission("fawe.bypass.regions")) {
if (actor instanceof Player) {
Player player = (Player) actor;
allowedRegions = player.getAllowedRegions();
@ -538,7 +538,7 @@ public final class EditSessionBuilder {
}
}
if (disallowedRegions == null && Settings.settings().REGION_RESTRICTIONS && Settings.settings().REGION_RESTRICTIONS_OPTIONS.ALLOW_BLACKLISTS) {
if (actor != null && !actor.hasPermission("fawe.bypass") && !actor.hasPermission("fawe.bypass.regions")) {
if (actor != null && !actor.hasPermission("fawe.bypass.regions")) {
if (actor instanceof Player) {
Player player = (Player) actor;
disallowedRegions = player.getDisallowedRegions();