From 51840ec92410c2adbcb9b3edb4fcb8a542184c22 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 10 Jul 2021 18:12:29 +0100 Subject: [PATCH] script lower: Fix ordering of partP and partQ 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 e3ed01d9..a26f50f6 100644 --- a/templates/script.ts +++ b/templates/script.ts @@ -735,7 +735,7 @@ function lower_pieces(targets_todo: LowerTodoList): if (nomove_heavy.length == 0) { plan.push({ - content: partQ.concat(partP), + content: partP.concat(partQ), z_top: q_z_top, z_bot : null, }); -- 2.30.2