Add cell reference HPF crash messages

This commit is contained in:
Gustas
2022-12-02 14:17:17 +02:00
committed by abcdefg30
parent 3091504c7e
commit b0036a2d3e

View File

@@ -1132,7 +1132,7 @@ namespace OpenRA.Mods.Common.Pathfinder
if (maybeAbstractCell == null) if (maybeAbstractCell == null)
throw new Exception( throw new Exception(
"The abstract path should never be searched for an unreachable point. " + "The abstract path should never be searched for an unreachable point. " +
"This is a bug. Failed lookup for an abstract cell."); $"Cell {cell} failed lookup for an abstract cell.");
} }
var abstractCell = maybeAbstractCell.Value; var abstractCell = maybeAbstractCell.Value;
@@ -1145,7 +1145,7 @@ namespace OpenRA.Mods.Common.Pathfinder
if (!abstractSearch.ExpandToTarget()) if (!abstractSearch.ExpandToTarget())
throw new Exception( throw new Exception(
"The abstract path should never be searched for an unreachable point. " + "The abstract path should never be searched for an unreachable point. " +
"This is a bug. Failed to route to abstract cell."); $"Abstract cell {abstractCell} failed to route to abstract cell.");
info = graph[abstractCell]; info = graph[abstractCell];
} }