We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e1a8ec + feedd31 commit 3fab576Copy full SHA for 3fab576
CmlLib/Core/Launcher/MLaunch.cs
@@ -161,6 +161,10 @@ public string[] CreateArg()
161
// options
162
if (!string.IsNullOrEmpty(launchOption.ServerIp))
163
{
164
+ if (launchOption.ServerPort != DefaultServerPort)
165
+ args.Add("--quickPlayMultiplayer " + $"{launchOption.ServerIp}:{launchOption.ServerPort}");
166
+ else
167
+ args.Add("--quickPlayMultiplayer " + $"{launchOption.ServerIp}");
168
args.Add("--server " + handleEmpty(launchOption.ServerIp));
169
170
if (launchOption.ServerPort != DefaultServerPort)
0 commit comments