Dig down twice after a panel
This commit is contained in:
parent
d80ff4e679
commit
408fed1ad2
@ -168,12 +168,14 @@ local function rectPrism(depth, width, length, leftFirst)
|
|||||||
Logger:debug("Handling full inventory with target:", invEmptyTarget, " handled:", handleFullInv(invEmptyTarget))
|
Logger:debug("Handling full inventory with target:", invEmptyTarget, " handled:", handleFullInv(invEmptyTarget))
|
||||||
end
|
end
|
||||||
Logger:trace("RectPrism:", depth, width, length)
|
Logger:trace("RectPrism:", depth, width, length)
|
||||||
for i=1,depth do
|
for _=1,depth do
|
||||||
panel(width, length, leftFirst, checkRefuel, checkFullInv)
|
panel(width, length, leftFirst, checkRefuel, checkFullInv)
|
||||||
|
for __=1,2 do
|
||||||
while not turtle.down() do
|
while not turtle.down() do
|
||||||
turtle.digDown()
|
turtle.digDown()
|
||||||
checkRefuel()
|
checkRefuel()
|
||||||
end
|
end
|
||||||
|
end
|
||||||
leftFirst = (not not leftFirst) ~= (width % 2 == 0)
|
leftFirst = (not not leftFirst) ~= (width % 2 == 0)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user