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:
@@ -232,3 +232,4 @@ v2.1:
|
|||||||
- Fix clones forgetting sub groups.
|
- Fix clones forgetting sub groups.
|
||||||
- Prevent players who have never logged in before from taking over existing accounts.
|
- 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;
|
return resultNow;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Negation found so store for later
|
if (!result.resultType.equals(PermissionCheckResult.Type.NEGATION)) {
|
||||||
// as we need to continue looking for an Exception.
|
// No Negation found so store for later
|
||||||
result = resultNow;
|
// as we need to continue looking for an Exception.
|
||||||
|
result = resultNow;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (String sonName : now.getInherits()) {
|
for (String sonName : now.getInherits()) {
|
||||||
|
Reference in New Issue
Block a user