Merge pull request #4725 from ScottNZ/orderlag

Move order lag change announcements to server.log
This commit is contained in:
Matthias Mailänder
2014-02-24 08:17:43 +01:00

View File

@@ -167,7 +167,7 @@ namespace OpenRA.Network
&& !orderManager.GameStarted)
{
orderManager.FramesAhead = orderManager.LobbyInfo.GlobalSettings.OrderLatency;
Game.Debug("Order lag is now {0} frames.".F(orderManager.LobbyInfo.GlobalSettings.OrderLatency));
Log.Write("server", "Order lag is now {0} frames.", orderManager.LobbyInfo.GlobalSettings.OrderLatency);
}
Game.SyncLobbyInfo();
break;