diff --git a/OpenRA.Server/Server.cs b/OpenRA.Server/Server.cs index 6782fc7d52..be628cd82b 100644 --- a/OpenRA.Server/Server.cs +++ b/OpenRA.Server/Server.cs @@ -119,6 +119,9 @@ namespace OpenRA.Server Console.WriteLine("Accepted connection from {0}.", newConn.socket.RemoteEndPoint); + + DispatchOrders(newConn, 0, new ServerOrder(newConn.PlayerIndex, + "Chat", "has joined the game.").Serialize()); } catch (Exception e) { DropClient(newConn, e); } }