mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 01:37:37 +00:00
Only add backupregions if whitelisting
This commit is contained in:
parent
4e6aee6bfb
commit
f7e94fd450
@ -147,11 +147,13 @@ public class WEManager {
|
|||||||
player.printError(TextComponent.of("Missing permission " + "fawe." + manager.getKey()));
|
player.printError(TextComponent.of("Missing permission " + "fawe." + manager.getKey()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
regions.addAll(backupRegions);
|
if (isWhitelist) {
|
||||||
if (!masks.isEmpty() && isWhitelist) {
|
regions.addAll(backupRegions);
|
||||||
player.setMeta("lastMask", masks);
|
if (!masks.isEmpty()) {
|
||||||
} else if (isWhitelist) {
|
player.setMeta("lastMask", masks);
|
||||||
player.deleteMeta("lastMask");
|
} else {
|
||||||
|
player.deleteMeta("lastMask");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return regions.toArray(new Region[0]);
|
return regions.toArray(new Region[0]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user