Move down 3 blocks instead of 2

This commit is contained in:
Gabriel Tofvesson 2024-12-03 23:17:57 +01:00
parent f6b76a522f
commit 1d4500a4d4

View File

@ -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()