Fixes #1678 anchor list doesn't obey enforceaccess

This commit is contained in:
Eric Stokes 2016-03-12 15:51:16 -07:00
parent f52004cb76
commit 46359cfbfe
1 changed files with 10 additions and 1 deletions

View File

@ -140,8 +140,17 @@ public class AnchorManager {
if (ancLoc == null) {
continue;
}
if (p.hasPermission("multiverse.access." + ancLoc.getWorld().getName())) {
String worldPerm = "multiverse.access." + ancLoc.getWorld().getName();
// Add to the list if we're not enforcing access
// OR
// We are enforcing access and the user has the permission.
if (!this.plugin.getMVConfig().getEnforceAccess() ||
(this.plugin.getMVConfig().getEnforceAccess() && p.hasPermission(worldPerm))) {
myAnchors.add(anchor);
} else {
Logging.finer(String.format("Not adding anchor %s to the list, user %s doesn't have the %s " +
"permission and 'enforceaccess' is enabled!",
anchor, p.getName(), worldPerm));
}
}
return Collections.unmodifiableSet(myAnchors);