We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a50693 commit ce935f2Copy full SHA for ce935f2
src/main/java/com/anatawa12/pluginPermsForNgt/coreMod/ClassTransformer.java
@@ -75,7 +75,7 @@ private byte[] transformNGTPermissionManagerBukkit(byte[] basicClass) {
75
// remove final flag
76
node.access = node.access & ~Opcodes.ACC_FINAL;
77
for (MethodNode method : node.methods) {
78
- if ("getPlayerList0".equals(method.name) && "()Ljava/util/Collection;".equals(method.desc)) {
+ if ("getPlayerList0".equals(method.name) && "(Ljava/lang/String;)Ljava/util/Collection;".equals(method.desc)) {
79
method.name = "getPlayerList";
80
}
81
0 commit comments