Remove "X has joined the game." notification when starting a Skirmish.

This commit is contained in:
Paul Chote
2021-07-05 18:44:21 +01:00
committed by Matthias Mailänder
parent 9c658ad36b
commit aa798c252b

View File

@@ -481,8 +481,8 @@ namespace OpenRA.Server
Log.Write("server", "{0} ({1}) has joined the game.", client.Name, newConn.EndPoint); Log.Write("server", "{0} ({1}) has joined the game.", client.Name, newConn.EndPoint);
// Report to all other players if (Type != ServerType.Local)
SendMessage($"{client.Name} has joined the game."); SendMessage($"{client.Name} has joined the game.");
// Send initial ping // Send initial ping
SendOrderTo(newConn, "Ping", Game.RunTime.ToString(CultureInfo.InvariantCulture)); SendOrderTo(newConn, "Ping", Game.RunTime.ToString(CultureInfo.InvariantCulture));