diff --git a/OpenRA.Mods.Common/Traits/AutoCrusher.cs b/OpenRA.Mods.Common/Traits/AutoCrusher.cs index ce1fd2fad6..9a2ad6e540 100644 --- a/OpenRA.Mods.Common/Traits/AutoCrusher.cs +++ b/OpenRA.Mods.Common/Traits/AutoCrusher.cs @@ -61,7 +61,7 @@ namespace OpenRA.Mods.Common.Traits var crushableActor = self.World.FindActorsInCircle(self.CenterPosition, Info.ScanRadius) .Where(a => IsValidCrushTarget(self, a)) - .ClosestToWithPathFrom(self); + .ClosestToWithPathFrom(self); // TODO: Make it use shortest pathfinding distance instead if (crushableActor == null) return;