1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-02 10:52:37 +02:00

Fix issue with Vault lookups not being preprocessed

This commit is contained in:
Luck
2016-10-24 15:57:05 +01:00
parent 2cfc82f3aa
commit 9894e45516
2 changed files with 6 additions and 1 deletions

View File

@@ -303,4 +303,9 @@ public class ContextSet {
public int hashCode() {
return 59 + (this.contexts == null ? 43 : this.contexts.hashCode());
}
@Override
public String toString() {
return "ContextSet(contexts=" + this.contexts + ")";
}
}