Fix the constructor order of FlyForward

This commit is contained in:
abcdefg30
2020-04-16 19:15:50 +02:00
committed by Paul Chote
parent b3aa61ee8e
commit a66305e282
2 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ namespace OpenRA.Mods.Common.Activities
cruiseAltitude = aircraft.Info.CruiseAltitude;
}
public FlyForward(int ticks, Actor self)
public FlyForward(Actor self, int ticks = -1)
: this(self)
{
flyTicks = ticks;