diff --git a/OpenRA.Mods.RA/Scripting/Properties/TransportProperties.cs b/OpenRA.Mods.RA/Scripting/Properties/TransportProperties.cs index c4ce0967bb..58d87dc5bc 100644 --- a/OpenRA.Mods.RA/Scripting/Properties/TransportProperties.cs +++ b/OpenRA.Mods.RA/Scripting/Properties/TransportProperties.cs @@ -57,7 +57,9 @@ namespace OpenRA.Mods.RA.Scripting public void Paradrop(CPos cell) { paradrop.SetLZ(cell, true); - self.QueueActivity(new FlyAttack(Target.FromCell(self.World, cell))); + self.QueueActivity(new Fly(self, Target.FromCell(self.World, cell))); + self.QueueActivity(new FlyOffMap()); + self.QueueActivity(new RemoveSelf()); } } } \ No newline at end of file