diff --git a/OpenRA.Mods.Common/Traits/Turreted.cs b/OpenRA.Mods.Common/Traits/Turreted.cs index 187991db6e..07ec791f04 100644 --- a/OpenRA.Mods.Common/Traits/Turreted.cs +++ b/OpenRA.Mods.Common/Traits/Turreted.cs @@ -142,7 +142,7 @@ namespace OpenRA.Mods.Common.Traits public bool FaceTarget(Actor self, Target target) { - if (attack == null || attack.IsTraitDisabled) + if (attack == null || attack.IsTraitDisabled || attack.IsTraitPaused) return false; var pos = self.CenterPosition;