Add BeaconDelay to SupportPower

This commit is contained in:
reaperrr
2016-11-05 23:05:30 +01:00
parent 871576b300
commit aa53553cdf
3 changed files with 7 additions and 2 deletions

View File

@@ -212,7 +212,8 @@ namespace OpenRA.Mods.RA.Traits
Info.ArrowSequence,
Info.CircleSequence,
Info.ClockSequence,
() => 1 - ((distanceTestActor.CenterPosition - target).HorizontalLength - info.BeaconDistanceOffset.Length) * 1f / distance);
() => 1 - ((distanceTestActor.CenterPosition - target).HorizontalLength - info.BeaconDistanceOffset.Length) * 1f / distance,
Info.BeaconDelay);
w.Add(beacon);
}