From bde13a8572147f5225410e550c403a6192a8bef7 Mon Sep 17 00:00:00 2001 From: penev92 Date: Tue, 14 Mar 2023 15:34:37 +0200 Subject: [PATCH] Fixed a bad merge --- OpenRA.Mods.Common/Traits/AutoTarget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/AutoTarget.cs b/OpenRA.Mods.Common/Traits/AutoTarget.cs index 4b10dbfcc3..fa5e420977 100644 --- a/OpenRA.Mods.Common/Traits/AutoTarget.cs +++ b/OpenRA.Mods.Common/Traits/AutoTarget.cs @@ -255,7 +255,7 @@ namespace OpenRA.Mods.Common.Traits return; // Respect AutoAttack priorities. - if (stance > UnitStance.ReturnFire) + if (Stance > UnitStance.ReturnFire) { var autoTarget = ScanForTarget(self, allowMove, true);