From 408fed1ad2ffaf59709ba7e4f1dbc641684c5df0 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 3 Dec 2024 23:00:39 +0100 Subject: [PATCH] Dig down twice after a panel --- quarry.lua | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/quarry.lua b/quarry.lua index 0e8dbb0..336a32f 100644 --- a/quarry.lua +++ b/quarry.lua @@ -168,11 +168,13 @@ local function rectPrism(depth, width, length, leftFirst) Logger:debug("Handling full inventory with target:", invEmptyTarget, " handled:", handleFullInv(invEmptyTarget)) end Logger:trace("RectPrism:", depth, width, length) - for i=1,depth do + for _=1,depth do panel(width, length, leftFirst, checkRefuel, checkFullInv) - while not turtle.down() do - turtle.digDown() - checkRefuel() + for __=1,2 do + while not turtle.down() do + turtle.digDown() + checkRefuel() + end end leftFirst = (not not leftFirst) ~= (width % 2 == 0) end