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(); OptionalInt weight = OptionalInt.empty();
try { try {
weight = getNodes().stream() weight = getNodes().stream()
.filter(n -> n.getPermission().startsWith("group.weight.")) .filter(n -> n.getPermission().startsWith("weight."))
.map(n -> n.getPermission().substring("group.weight.".length())) .map(n -> n.getPermission().substring("weight.".length()))
.mapToInt(Integer::parseInt) .mapToInt(Integer::parseInt)
.max(); .max();
} catch (Exception ignored) {} } catch (Exception ignored) {}