Port DonateCash to the new Enter activity.

This commit is contained in:
Paul Chote
2019-02-01 21:27:43 +00:00
committed by Oliver Brakmann
parent 4551625bb4
commit cc288f5afc
3 changed files with 22 additions and 26 deletions

View File

@@ -33,8 +33,9 @@ namespace OpenRA.Mods.Common.Scripting
[Desc("Deliver cash to the target actor.")]
public void DeliverCash(Actor target)
{
Self.SetTargetLine(Target.FromActor(target), Color.Yellow);
Self.QueueActivity(new DonateCash(Self, target, info.Payload, info.PlayerExperience));
var t = Target.FromActor(target);
Self.SetTargetLine(t, Color.Yellow);
Self.QueueActivity(new DonateCash(Self, t, info.Payload, info.PlayerExperience));
}
}