From e9a420a9e58aced017c54b5fdb0c8884f323efe1 Mon Sep 17 00:00:00 2001 From: reaperrr Date: Fri, 14 Jul 2017 05:31:43 +0200 Subject: [PATCH] Remove redundant TakeOff from Aircraft ResupplyAircraft queues a TakeOff anyway, if the aircraft is a helicopter. --- OpenRA.Mods.Common/Traits/Air/Aircraft.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs index 1add21f905..c8892660fc 100644 --- a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs +++ b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs @@ -732,7 +732,6 @@ namespace OpenRA.Mods.Common.Traits self.QueueActivity(new Turn(self, Info.InitialFacing)); self.QueueActivity(new HeliLand(self, false)); self.QueueActivity(new ResupplyAircraft(self)); - self.QueueActivity(new TakeOff(self)); }; self.QueueActivity(order.Queued, new CallFunc(enter));