From 804c3897b8abdb105f64dde698e6493860bb859d Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 15 Apr 2023 01:16:18 +0200 Subject: [PATCH] number of step reported in crystal::build_shortest_path --- crystal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crystal.cpp b/crystal.cpp index 7ed57b4e..891413a8 100644 --- a/crystal.cpp +++ b/crystal.cpp @@ -884,7 +884,7 @@ EX vector build_shortest_path(cell *c1, cell *c2) { } } - println(hlog, "Error: path not found"); + println(hlog, "Error: path not found, steps = ", steps); return p; }