mirror of
https://github.com/MilkBowl/Vault.git
synced 2024-12-28 12:02:01 +01:00
update starburst. adjust groupHas to toLower the perm.
This commit is contained in:
parent
471035040d
commit
0adaac8cb6
Binary file not shown.
@ -161,7 +161,7 @@ public class Permission_Starburst extends Permission {
|
||||
return false;
|
||||
}
|
||||
Map<String, Boolean> effective = g.aggregatePermissions();
|
||||
return effective.containsKey(permission) ? effective.get(permission) : false;
|
||||
return effective.containsKey(permission.toLowerCase()) ? effective.get(permission.toLowerCase()) : false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user