Skip to content

Commit

Permalink
Add missing target line to aircraft taking off from resupplying.
Browse files Browse the repository at this point in the history
  • Loading branch information
tovl committed Sep 8, 2019
1 parent 796aa11 commit bf67779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenRA.Mods.Common/Activities/Resupply.cs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ void OnResupplyEnding(Actor self, bool isHostInvalid = false)
if (wasRepaired || isHostInvalid || (!stayOnResupplier && aircraft.Info.TakeOffOnResupply))
{
if (rp != null)
QueueChild(move.MoveTo(rp.Location, repairableNear != null ? null : host.Actor));
QueueChild(move.MoveTo(rp.Location, repairableNear != null ? null : host.Actor, targetLineColor: Color.Green));
else
QueueChild(new TakeOff(self));

Expand Down

0 comments on commit bf67779

Please sign in to comment.