AutoReconnect

AutoReconnect

109k Downloads

1.19.4 finish code for connect

Meense opened this issue ยท 2 comments

commented
MinecraftClient client = MinecraftClient.getInstance();
Screen screen = client.currentScreen;
InetSocketAddress inetSocketAddress;

try {
Optional<InetSocketAddress> optional = AllowedAddressResolver.DEFAULT.resolve(address).map(Address::getInetSocketAddress);

inetSocketAddress = optional.get();
ClientConnection connection = ClientConnection.connect(inetSocketAddress, client.options.shouldUseNativeTransport());
connection.setPacketListener(new ClientLoginNetworkHandler(connection, client, info, screen, false, null, CurrentClass::setStatus));
connection.send(new HandshakeC2SPacket(inetSocketAddress.getHostName(), inetSocketAddress.getPort(), NetworkState.LOGIN));
connection.send(new LoginHelloC2SPacket(client.getSession().getUsername(), Optional.ofNullable(client.getSession().getUuidOrNull())));
} catch (Exception var6) {
}

private static void setStatus(Text status) {
      LOGGER.info("Reconnected to server: " + status.getString());
}

private static ServerInfo info =  new ServerInfo("name", "ip", false);
private static ServerAddress address = ServerAddress.parse("ip");
commented

i hope this helps

commented

I'm not sure where this should come in or what it is trying to fix, please elaborate if it's still relevant.
Closing this, as I'm focusing on the 1.20 release right now. If a version for 1.19.3/4 is still needed, please reopen issue #48 or reopen this if you want to explain what issue you were trying to fix here.