diff --git a/OpenRA.Server/Server.cs b/OpenRA.Server/Server.cs index a722ce8e43..39fc80fa7a 100644 --- a/OpenRA.Server/Server.cs +++ b/OpenRA.Server/Server.cs @@ -391,6 +391,9 @@ namespace OpenRA.Server lobbyInfo.GlobalSettings.Mods = lobbyInfo.GlobalSettings.Mods.Concat( new[] { s } ).ToArray(); SyncLobbyInfo(); + DispatchOrdersToClient(conn, 0, + new ServerOrder( conn.PlayerIndex, "Chat", + "Added mod: " + s ).Serialize() ); return true; } catch