Force IPv4 through client

This commit is contained in:
ceikry 2021-07-05 09:47:42 -05:00
parent 03a364e756
commit 29c199f068

View file

@ -63,6 +63,10 @@ object GameLaunch {
System.load(temp.absolutePath)
}
//Force IPv4 because sometimes Windows insists on using IPv6 regardless of what a service actually offers
System.setProperty("java.net.preferIPv4Stack" , "true");
GameShell.launchDesktop()
}