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(); }