Fix ActionQueue.PerformActions executing actions out of order

This commit is contained in:
ScottNZ
2013-09-20 20:47:03 +12:00
parent c26a0cb222
commit f3fa81b8f1

View File

@@ -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();