Skip to content

Commit 7c740e8

Browse files
committed
Fix multiconnect compat. Closes #471
1 parent b0f4a37 commit 7c740e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/earthcomputer/clientcommands/MulticonnectCompat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ private MulticonnectCompat() {
2828
return null;
2929
}
3030
try {
31-
return clazz.getMethod("getInstance").invoke(null);
31+
return clazz.getMethod("instance").invoke(null);
3232
} catch (ReflectiveOperationException e) {
3333
throw new RuntimeException(e);
3434
}

0 commit comments

Comments
 (0)