From b45f9568d036c3acc8e6c6323cf80f3c447516a1 Mon Sep 17 00:00:00 2001 From: Igor Popov Date: Thu, 7 Jun 2012 19:05:51 +0400 Subject: [PATCH] dedicated: force tell master server if amount of clients is 0 --- OpenRA.Game/Server/Server.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Server/Server.cs b/OpenRA.Game/Server/Server.cs index 33762bdaa9..75e3515c6f 100644 --- a/OpenRA.Game/Server/Server.cs +++ b/OpenRA.Game/Server/Server.cs @@ -505,7 +505,7 @@ namespace OpenRA.Server DispatchOrders( toDrop, toDrop.MostRecentFrame, new byte[] { 0xbf } ); - if (conns.Count != 0) + if (conns.Count != 0 || lobbyInfo.GlobalSettings.Dedicated) SyncLobbyInfo(); }