From 316f2c4104673c6ffee99f04b85dec86966ec08e Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 10 Jul 2021 17:59:18 +0100 Subject: [PATCH] script lower: Fix a debug print for bottom -> heavy rename 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 6d4e8427..c49bc141 100644 --- a/templates/script.ts +++ b/templates/script.ts @@ -690,7 +690,7 @@ function lower_pieces(targets_todo: LowerTodoList): q_z_top = p.z; xst = 'STATE -> B'; } - console.log('LOWER WALK', piece, 'TODO', todo.heavy ? "B" : "_", xst); + console.log('LOWER WALK', piece, 'TODO', todo.heavy ? "H" : "_", xst); delete targets_todo[piece]; if (!todo.heavy) n_targets_todo_light--; (todo.heavy ? tomove_heavy : tomove_light).push(todo); -- 2.30.2