planes return to base after attacking

This commit is contained in:
Chris Forbes
2009-12-29 19:47:08 +13:00
parent a5d8dc5861
commit 8a71bf36c3
5 changed files with 31 additions and 5 deletions

View File

@@ -139,7 +139,7 @@ namespace OpenRa.Game.Traits
public static IActivity SequenceActivities(params IActivity[] acts)
{
return acts.Reverse().Aggregate((IActivity)null,
return acts.Reverse().Aggregate(
(next, a) => { a.NextActivity = next; return a; });
}
}