mirror of
https://github.com/essentials/Essentials.git
synced 2025-07-31 03:40:52 +02:00
Prevent GM's own permission tests from allowing inherited permissions to override inherited negations (caused when we added the exception override for sub groups).
This commit is contained in:
@@ -231,4 +231,5 @@ v2.1:
|
||||
- Set a default mirror map if none is found in the config.
|
||||
- Fix clones forgetting sub groups.
|
||||
- Prevent players who have never logged in before from taking over existing accounts.
|
||||
- Added metrics.
|
||||
- Added metrics.
|
||||
- Prevent GM's own permission tests from allowing inherited permissions to override inherited negations (caused when we added the exception override for sub groups).
|
@@ -1072,9 +1072,11 @@ public class AnjoPermissionsHandler extends PermissionsReaderInterface {
|
||||
return resultNow;
|
||||
}
|
||||
|
||||
// Negation found so store for later
|
||||
// as we need to continue looking for an Exception.
|
||||
result = resultNow;
|
||||
if (!result.resultType.equals(PermissionCheckResult.Type.NEGATION)) {
|
||||
// No Negation found so store for later
|
||||
// as we need to continue looking for an Exception.
|
||||
result = resultNow;
|
||||
}
|
||||
}
|
||||
|
||||
for (String sonName : now.getInherits()) {
|
||||
|
Reference in New Issue
Block a user