From 1d4500a4d4806b22dba5b9374a947183a107aeea Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 3 Dec 2024 23:17:57 +0100 Subject: [PATCH] Move down 3 blocks instead of 2 --- quarry.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quarry.lua b/quarry.lua index 360a25f..9bf3da9 100644 --- a/quarry.lua +++ b/quarry.lua @@ -172,7 +172,7 @@ local function rectPrism(depth, width, length, leftFirst) Logger:trace("RectPrism:", depth, width, length) for _=1,depth do panel(width, length, leftFirst, checkRefuel, checkFullInv) - for __=1,2 do + for __=1,3 do while not turtle.down() do turtle.digDown() checkRefuel()