Fix RCS1205

This commit is contained in:
RoosterDragon
2023-03-18 13:16:05 +00:00
committed by Gustas
parent 25cb3728ca
commit 498c6e3d8b
8 changed files with 27 additions and 24 deletions

View File

@@ -936,8 +936,8 @@ namespace OpenRA.Mods.Common.Pathfinder
using (var fromDest = GetLocalPathSearch(
self, new[] { target }, source, customCost, ignoreActor, check, laneBias, null, heuristicWeightPercentage,
heuristic: Heuristic(forwardAbstractSearch, estimatedSearchSize, null, null),
recorder: pathFinderOverlay?.RecordLocalEdges(self),
inReverse: true))
inReverse: true,
recorder: pathFinderOverlay?.RecordLocalEdges(self)))
return PathSearch.FindBidiPath(fromDest, fromSrc);
}
}