don't display game join notifications during missions

This commit is contained in:
Matthias Mailänder
2015-07-05 17:17:14 +02:00
parent 8c92839e0b
commit e86ff94a20

View File

@@ -359,7 +359,9 @@ namespace OpenRA.Server
t.ClientJoined(this, newConn);
SyncLobbyInfo();
SendMessage("{0} has joined the game.".F(client.Name));
if (!LobbyInfo.IsSinglePlayer)
SendMessage("{0} has joined the game.".F(client.Name));
// Send initial ping
SendOrderTo(newConn, "Ping", Game.RunTime.ToString());