From 49f42401e6f1a6014e33ddeac99b6277bec52504 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-R=C3=A9my=20Buchs?= Date: Wed, 9 Aug 2017 18:43:26 +0200 Subject: [PATCH] Improve the description of LandOnCondition of Aircraft --- OpenRA.Mods.Common/Traits/Air/Aircraft.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs index 55b9aa0672..8cb441bdb0 100644 --- a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs +++ b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs @@ -101,7 +101,8 @@ namespace OpenRA.Mods.Common.Traits yield return new FacingInit(PreviewFacing); } - [Desc("Condition when this aircraft should land as soon as possible and refuse to take off.")] + [Desc("Condition when this aircraft should land as soon as possible and refuse to take off. ", + "This only applies while the aircraft is above terrain which is listed in LandableTerrainTypes.")] public readonly BooleanExpression LandOnCondition; public IReadOnlyDictionary OccupiedCells(ActorInfo info, CPos location, SubCell subCell = SubCell.Any) { return new ReadOnlyDictionary(); }