From 3487d6bad5fc0b8b62ae52a2b0c99aabafc88a4f Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 25 Sep 2016 15:45:23 +0100 Subject: [PATCH] Change aircraft default to move to rally point after resupplying. --- OpenRA.Mods.Common/Traits/Air/Aircraft.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs index 4a84fe62b2..5d28ba48f3 100644 --- a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs +++ b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs @@ -70,7 +70,7 @@ namespace OpenRA.Mods.Common.Traits public readonly bool TurnToLand = false; [Desc("Does this actor cancel its previous activity after resupplying?")] - public readonly bool AbortOnResupply = false; + public readonly bool AbortOnResupply = true; public readonly WDist LandAltitude = WDist.Zero;