1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-27 13:13:16 +00:00

number of step reported in crystal::build_shortest_path

This commit is contained in:
Zeno Rogue 2023-04-15 01:16:18 +02:00
parent 70842eb6e9
commit 804c3897b8

View File

@ -884,7 +884,7 @@ EX vector<cell*> build_shortest_path(cell *c1, cell *c2) {
} }
} }
println(hlog, "Error: path not found"); println(hlog, "Error: path not found, steps = ", steps);
return p; return p;
} }