mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-23 19:16:37 +01:00
Fix bug in PermissionHolder#hasNode (#2490)
Regression introduced in bd6d3ab7c0
This commit is contained in:
parent
9659333d0e
commit
92e008ff0a
@ -462,7 +462,7 @@ public abstract class PermissionHolder {
|
||||
|
||||
for (Node other : nodes) {
|
||||
if (equalityPredicate.areEqual(node, other)) {
|
||||
return Tristate.of(node.getValue());
|
||||
return Tristate.of(other.getValue());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user