From f3fa81b8f14681bfa4b04a3102ac59c924916374 Mon Sep 17 00:00:00 2001 From: ScottNZ Date: Fri, 20 Sep 2013 20:47:03 +1200 Subject: [PATCH] Fix ActionQueue.PerformActions executing actions out of order --- OpenRA.FileFormats/Primitives/ActionQueue.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.FileFormats/Primitives/ActionQueue.cs b/OpenRA.FileFormats/Primitives/ActionQueue.cs index d7a5939a83..483537d942 100644 --- a/OpenRA.FileFormats/Primitives/ActionQueue.cs +++ b/OpenRA.FileFormats/Primitives/ActionQueue.cs @@ -36,7 +36,7 @@ namespace OpenRA.FileFormats while (!actions.Empty && actions.Peek().Time <= t) { var da = actions.Pop(); - a += da.Action; + a = da.Action + a; } } a();