From 49b9126af2994fa1dadfd8e651e5894e88cc14cb Mon Sep 17 00:00:00 2001 From: Bitl Date: Wed, 9 Jun 2021 11:17:39 -0700 Subject: [PATCH] fix server browser loading maps --- Novetus/NovetusLauncher/Forms/ServerBrowser.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Novetus/NovetusLauncher/Forms/ServerBrowser.cs b/Novetus/NovetusLauncher/Forms/ServerBrowser.cs index ed3a7d8..810c7a9 100644 --- a/Novetus/NovetusLauncher/Forms/ServerBrowser.cs +++ b/Novetus/NovetusLauncher/Forms/ServerBrowser.cs @@ -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; }