We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7235c30 commit 774db5bCopy full SHA for 774db5b
src/plugin.yml
@@ -1,5 +1,5 @@
1
name: SkUniversal
2
-version: '2.12.5'
+version: '2.13'
3
author: Donut
4
main: us.donut.skuniversal.SkUniversal
5
api-version: 1.13
src/us/donut/skuniversal/griefprevention/expressions/ExprClaimsOfPlayer.java
@@ -63,7 +63,7 @@ protected Number[] get(Event e) {
63
if (player.getSingle(e) == null) return null;
64
return dataStore.getClaims()
65
.stream()
66
- .filter(claim -> claim.ownerID.equals(player.getSingle(e).getUniqueId()))
+ .filter(claim -> player.getSingle(e).getUniqueId().equals(claim.ownerID))
67
.filter(claim -> {
68
switch (claimType) {
69
case "normal":
0 commit comments