From bb7711c86648aabda8cb6c062f752e1f54a9750c Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 10 Jul 2021 17:10:02 +0100 Subject: [PATCH] script: lower: Improve debug slightly Signed-off-by: Ian Jackson --- templates/script.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/script.ts b/templates/script.ts index e43819c1..81813134 100644 --- a/templates/script.ts +++ b/templates/script.ts @@ -682,7 +682,7 @@ function lower_pieces(targets_todo: LowerTodoList): let todo = targets_todo[piece]; if (todo) { - console.log('LOWER WALK', piece, 'TODO', todo.bottom); + console.log('LOWER WALK', piece, 'TODO', todo.bottom ? "B" : "_"); delete targets_todo[piece]; if (!todo.bottom) n_targets_todo_unbottom--; (todo.bottom ? tomove_bottom : tomove_unbottom).push(todo); -- 2.30.2