We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello i created server on 1.16.5 but is not working, here is code:
public ProxyController() { this.server = new TcpServer("0.0.0.0", 25565, MinecraftProtocol.class); this.server.setGlobalFlag(MinecraftConstants.SERVER_LOGIN_HANDLER_KEY,new PlayerJoinListener()); this.server.setGlobalFlag(MinecraftConstants.SERVER_COMPRESSION_THRESHOLD, 100); this.server.setGlobalFlag(MinecraftConstants.VERIFY_USERS_KEY, false); server.setGlobalFlag(MinecraftConstants.SERVER_PING_TIME_HANDLER_KEY, (ServerPingTimeHandler) (session, pingTime) -> System.out.println("Server ping took " + pingTime + "ms")); server.bind(); }
If I turn on the server and want to join it, it says "Disconnected" and 0 errors
The text was updated successfully, but these errors were encountered:
Still happening? Consider using https://github.com/GeyserMC/GlobalLinkServer/blob/master/src/main/java/org/geysermc/globallinkserver/java/JavaServer.java as a reference
Sorry, something went wrong.
No branches or pull requests
Hello i created server on 1.16.5 but is not working, here is code:
If I turn on the server and want to join it, it says "Disconnected" and 0 errors
The text was updated successfully, but these errors were encountered: