Make Infiltrates grant player experience

This commit is contained in:
Oliver Brakmann
2016-07-10 14:03:01 +02:00
parent 1e86326cbc
commit ac07c81e08
3 changed files with 12 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ namespace OpenRA.Mods.RA.Scripting
[Desc("Infiltrate the target actor.")]
public void Infiltrate(Actor target)
{
Self.QueueActivity(new Infiltrate(Self, target, info.EnterBehaviour, info.ValidStances, info.Notification));
Self.QueueActivity(new Infiltrate(Self, target, info.EnterBehaviour, info.ValidStances, info.Notification, info.PlayerExperience));
}
}
}