From d185f6e9f13a2a463aba70c7839314df963e148d Mon Sep 17 00:00:00 2001 From: reaperrr Date: Thu, 18 Jul 2019 14:53:42 +0200 Subject: [PATCH] Remove AbortOnResupply from Aircraft again This was accidentally re-added during a rebase in a previous PR. --- OpenRA.Mods.Common/Traits/Air/Aircraft.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs index bd9d3be34c..53234fe04f 100644 --- a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs +++ b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs @@ -87,9 +87,6 @@ namespace OpenRA.Mods.Common.Traits [Desc("Does this VTOL actor need to turn before landing on a resupplier?")] public readonly bool TurnToDock = true; - [Desc("Does this actor cancel its previous activity after resupplying?")] - public readonly bool AbortOnResupply = true; - [Desc("Does this actor automatically take off after resupplying?")] public readonly bool TakeOffOnResupply = false;