Skip to content

Commit

Permalink
don't display game join notifications during missions
Browse files Browse the repository at this point in the history
  • Loading branch information
Mailaender committed Jul 5, 2015
1 parent 8c92839 commit e86ff94
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion OpenRA.Game/Server/Server.cs
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,9 @@ void ValidateClient(Connection newConn, string data)
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());
Expand Down

0 comments on commit e86ff94

Please sign in to comment.