Fix landing craft reinforcements in GDI01 and GDI02.

This commit is contained in:
Paul Chote
2014-10-25 16:48:02 +13:00
parent 8e4765ca46
commit 8b66162e99
7 changed files with 77 additions and 6 deletions

View File

@@ -33,6 +33,9 @@ namespace OpenRA.Mods.RA.Scripting
[Desc("Teleport an existing actor inside this transport.")]
public void LoadPassenger(Actor a) { cargo.Load(self, a); }
[Desc("Remove the first actor from the transport. This actor is not added to the world.")]
public Actor UnloadPassenger() { return cargo.Unload(self); }
[ScriptActorPropertyActivity]
[Desc("Command transport to unload passengers.")]
public void UnloadPassengers()