diff --git a/OpenRA.Mods.Common/Traits/SupportPowers/SupportPowerManager.cs b/OpenRA.Mods.Common/Traits/SupportPowers/SupportPowerManager.cs index 6a407916cc..de1f81752f 100644 --- a/OpenRA.Mods.Common/Traits/SupportPowers/SupportPowerManager.cs +++ b/OpenRA.Mods.Common/Traits/SupportPowers/SupportPowerManager.cs @@ -236,7 +236,7 @@ namespace OpenRA.Mods.Common.Traits var power = Instances.Where(i => !i.IsTraitPaused && !i.IsTraitDisabled) .MinByOrDefault(a => { - if (a.Self.OccupiesSpace == null) + if (a.Self.OccupiesSpace == null || order.Target.Type == TargetType.Invalid) return 0; return (a.Self.CenterPosition - order.Target.CenterPosition).HorizontalLengthSquared;