mirror of
https://github.com/MilkBowl/Vault.git
synced 2025-01-14 20:21:56 +01:00
fix playerHas for Starburst
This commit is contained in:
parent
0adaac8cb6
commit
319d1d4f49
@ -102,7 +102,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