Fix quarry boundary conditions
This commit is contained in:
parent
9177394fd0
commit
b10bc73833
@ -105,7 +105,8 @@ local function dig(checkRefuel)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function line(length, turn, checkRefuel)
|
local function line(length, turn, checkRefuel)
|
||||||
for i=1,length do
|
turtle.digDown()
|
||||||
|
for i=2,length do
|
||||||
dig(checkRefuel)
|
dig(checkRefuel)
|
||||||
end
|
end
|
||||||
turn()
|
turn()
|
||||||
@ -114,13 +115,15 @@ end
|
|||||||
local function panel(width, length, leftFirst, checkRefuel, checkFullInv)
|
local function panel(width, length, leftFirst, checkRefuel, checkFullInv)
|
||||||
Logger:trace("Panel:", width, length)
|
Logger:trace("Panel:", width, length)
|
||||||
local turn, otherTurn = leftFirst and turtle.turnLeft or turtle.turnRight, leftFirst and turtle.turnRight or turtle.turnLeft
|
local turn, otherTurn = leftFirst and turtle.turnLeft or turtle.turnRight, leftFirst and turtle.turnRight or turtle.turnLeft
|
||||||
for i=1,width do
|
for i=2,width do
|
||||||
checkFullInv()
|
checkFullInv()
|
||||||
line(length, turn, checkRefuel)
|
line(length, turn, checkRefuel)
|
||||||
dig(checkRefuel)
|
dig(checkRefuel)
|
||||||
turn()
|
turn()
|
||||||
turn, otherTurn = otherTurn, turn
|
turn, otherTurn = otherTurn, turn
|
||||||
end
|
end
|
||||||
|
line(length, turn, checkRefuel)
|
||||||
|
turn()
|
||||||
end
|
end
|
||||||
|
|
||||||
local function rectPrism(depth, width, length, leftFirst)
|
local function rectPrism(depth, width, length, leftFirst)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user