From c9edbd8a80a89b7fc72ce8976a77cfd6e006ecab Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Tue, 21 Sep 2010 18:10:05 +1200 Subject: [PATCH] report the tick in debug --- OpenRA.Game/Game.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenRA.Game/Game.cs b/OpenRA.Game/Game.cs index 8e510e486b..c50e7dfd89 100644 --- a/OpenRA.Game/Game.cs +++ b/OpenRA.Game/Game.cs @@ -126,6 +126,8 @@ namespace OpenRA { ++LocalTick; + Log.Write("debug", "--Tick: {0} ({1})", LocalTick, isNetTick ? "net" : "local"); + if (isNetTick) orderManager.Tick(world); world.OrderGenerator.Tick(world);