From 3df6cfa70694e4197975b2aff9ccdd6f906a307f Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Sat, 25 May 2024 22:08:27 +0200 Subject: [PATCH] fix(mystical-upgrader): replace the first picked block correctly --- mystical-upgrader.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mystical-upgrader.lua b/mystical-upgrader.lua index f51a145..277ce3c 100644 --- a/mystical-upgrader.lua +++ b/mystical-upgrader.lua @@ -221,7 +221,7 @@ local upProcedure = function(state) while state.y ~= firstY do goUp(state) - if state.y == firstY + 1 and state.firstPickedItem then + if state.y == firstY and state.firstPickedItem then placeDownItem(state.firstPickedItem) else placeDownFillBlock()