Adjust the patrol starting position

This commit is contained in:
ScottNZ
2012-07-01 12:14:12 +12:00
parent e02397da3e
commit 18d75feb15

View File

@@ -187,7 +187,7 @@ namespace OpenRA.Mods.RA.Missions
{
for (int i = 0; i < patrol.Length; i++)
{
var actor = self.World.CreateActor(patrol[i], new TypeDictionary { new OwnerInit(soviets), new LocationInit(insertionLZ.Location + new CVec(-1 + i, 6 + i * 2)) });
var actor = self.World.CreateActor(patrol[i], new TypeDictionary { new OwnerInit(soviets), new LocationInit(insertionLZ.Location + new CVec(-1 + i, 8 + i * 2)) });
actor.QueueActivity(new Move.Move(insertionLZ.Location));
}
}