Revert "Remove an outdated comment from AutoCrusher.cs"

This reverts commit c8779e2a6b
This commit is contained in:
abcdefg30
2023-10-12 17:11:19 +02:00
committed by Gustas
parent 1dc14ed9f1
commit 5eb6ba6e5c

View File

@@ -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;