Rename FlyCircle to FlyIdle and make it tick TickIdle

It now handles both hovering and circling aircraft, for consistency.
This commit is contained in:
reaperrr
2019-07-18 17:36:09 +02:00
committed by teinarss
parent ce29dcad87
commit 801f5ba525
4 changed files with 24 additions and 24 deletions

View File

@@ -100,7 +100,7 @@ namespace OpenRA.Mods.Common.Activities
}
QueueChild(new Fly(self, Target.FromActor(nearestResupplier), WDist.Zero, aircraft.Info.WaitDistanceFromResupplyBase, targetLineColor: Color.Green));
QueueChild(new FlyCircle(self, aircraft.Info.NumberOfTicksToVerifyAvailableAirport));
QueueChild(new FlyIdle(self, aircraft.Info.NumberOfTicksToVerifyAvailableAirport));
return false;
}