Merge pull request #2684 from xaionaro/bleed

fixed a issue with pinging Master-server
This commit is contained in:
Chris Forbes
2013-02-27 11:50:18 -08:00

View File

@@ -25,7 +25,7 @@ namespace OpenRA.Mods.RA.Server
public void Tick(S server)
{
if (Environment.TickCount - lastPing > MasterPingInterval * 1000)
if ((Environment.TickCount - lastPing > MasterPingInterval * 1000) || isInitialPing)
PingMasterServer(server);
else
lock (masterServerMessages)