From 43820c4fceb1b8a4a8c98f8f3ab13471067c9a13 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 10 Jul 2021 01:53:36 +0100 Subject: [PATCH] script: lower: Fix wrong order of misplaced bottoms 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 8af7e9eb..150353b0 100644 --- a/templates/script.ts +++ b/templates/script.ts @@ -722,7 +722,7 @@ function lower_pieces(targets_todo: LowerTodoList): let plan : PlanEntry[] = []; - let partQ = tomove_unbottom.concat(tomove_misstacked); + let partQ = tomove_misstacked.concat(tomove_unbottom); let partP = tomove_bottom; if (nomove_bottom.length == 0) { -- 2.30.2