force stop join if we go past time limit

This commit is contained in:
RandomityGuy 2024-06-06 22:03:36 +05:30
parent f1341f8717
commit 89580f1e23

View file

@ -271,6 +271,11 @@ class Net {
var openFlags = 0;
var onDatachannelOpen = (idx:Int) -> {
if (!Net.isMP) {
// Close
client.close();
return;
}
openFlags |= idx;
if (openFlags == 3) {
if (MarbleGame.canvas.content is MultiplayerLoadingGui) {