change weight node

This commit is contained in:
Luck 2016-12-19 18:22:32 +00:00 committed by GitHub
parent 171a54c0fc
commit 060fa6e5f7

View File

@ -1115,8 +1115,8 @@ public abstract class PermissionHolder {
OptionalInt weight = OptionalInt.empty();
try {
weight = getNodes().stream()
.filter(n -> n.getPermission().startsWith("group.weight."))
.map(n -> n.getPermission().substring("group.weight.".length()))
.filter(n -> n.getPermission().startsWith("weight."))
.map(n -> n.getPermission().substring("weight.".length()))
.mapToInt(Integer::parseInt)
.max();
} catch (Exception ignored) {}