diff --git a/OpenRA.Mods.Common/Traits/AutoCrusher.cs b/OpenRA.Mods.Common/Traits/AutoCrusher.cs index aa07c4e6fd..e831bfed19 100644 --- a/OpenRA.Mods.Common/Traits/AutoCrusher.cs +++ b/OpenRA.Mods.Common/Traits/AutoCrusher.cs @@ -63,7 +63,7 @@ namespace OpenRA.Mods.Common.Traits self.Location != a.Location && a.IsAtGroundLevel() && Info.TargetRelationships.HasRelationship(self.Owner.RelationshipWith(a.Owner)) && a.TraitsImplementing().Any(c => c.CrushableBy(a, self, Info.CrushClasses))) - .ClosestToWithPathFrom(self); // TODO: Make it use shortest pathfinding distance instead + .ClosestToWithPathFrom(self); if (crushableActor == null) return;