From a010c7278052f833e90a6a355db3e7b98deba08d Mon Sep 17 00:00:00 2001 From: reaperrr Date: Sat, 13 Jul 2019 15:25:57 +0200 Subject: [PATCH] Fixed comment typo in Aircraft --- 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 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;