mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 11:38:40 +01:00
Fix #54 - getPermissionValue not checking default user
This commit is contained in:
parent
b1ab857592
commit
a063f7664d
@ -42,8 +42,8 @@ public class DefaultsProcessor implements PermissionProcessor {
|
||||
return t;
|
||||
}
|
||||
|
||||
Tristate t2 = service.getDefaults().getPermissionValue(contexts, permission);
|
||||
if (t2 != Tristate.UNDEFINED) {
|
||||
t = service.getDefaults().getPermissionValue(contexts, permission);
|
||||
if (t != Tristate.UNDEFINED) {
|
||||
return t;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user