From e86ff94a209df300e386886febf135e28426459a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 5 Jul 2015 17:17:14 +0200 Subject: [PATCH] don't display game join notifications during missions --- OpenRA.Game/Server/Server.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/OpenRA.Game/Server/Server.cs b/OpenRA.Game/Server/Server.cs index 2c6cdcced5..4dbdb6d8d6 100644 --- a/OpenRA.Game/Server/Server.cs +++ b/OpenRA.Game/Server/Server.cs @@ -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());