diff --git a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs index 69311b7814..0ac9e40a27 100644 --- a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs +++ b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs @@ -358,7 +358,7 @@ namespace OpenRA.Mods.Common.Traits ForceLanding = true; } - // Add takeoff activity if LandOnCondidion resolves to false and the actor should not land when idle. + // Add takeoff activity if LandOnCondition resolves to false and the actor should not land when idle. if (ForceLanding && landNow.HasValue && !landNow.Value && !cruising && !(self.CurrentActivity is TakeOff)) { ForceLanding = false;