fix server browser loading maps

This commit is contained in:
Bitl 2021-06-09 11:17:39 -07:00
parent 5c0269be91
commit 49b9126af2
1 changed files with 1 additions and 5 deletions

View File

@ -91,11 +91,7 @@ namespace NovetusLauncher
int oldPort = GlobalVars.JoinPort;
GlobalVars.IP = curServer.ServerIP;
GlobalVars.JoinPort = curServer.ServerPort;
#if LAUNCHER
GlobalFuncs.LaunchRBXClient(curServer.ServerClient, ScriptType.Client, false, false, null, null);
#else
GlobalFuncs.LaunchRBXClient(curServer.ServerClient, ScriptType.Client, false, false, null);
#endif
GlobalFuncs.LaunchRBXClient(curServer.ServerClient, ScriptType.Client, false, true, null, null);
GlobalVars.IP = oldIP;
GlobalVars.JoinPort = oldPort;
}