Update blabla

This commit is contained in:
Dominic Zimmer 2020-07-04 14:50:52 +02:00
parent bbb49caf95
commit f9afaa90ec

View File

@ -112,9 +112,9 @@ end
function digShaft() function digShaft()
turtle.digDown() turtle.digDown()
turtle.down()
selectCobble() selectCobble()
turtle.placeUp() turtle.placeUp()
turtle.down()
print("Starting to dig shaft") print("Starting to dig shaft")
depth = digDeep(turtle.down, turtle.digDown, turtle.inspectDown, -1) depth = digDeep(turtle.down, turtle.digDown, turtle.inspectDown, -1)
print("Dug the first shaft (depth = "..tostring(depth)..")") print("Dug the first shaft (depth = "..tostring(depth)..")")
@ -127,8 +127,8 @@ function digShaft()
turtle.turnLeft() turtle.turnLeft()
selectCobble() selectCobble()
turtle.placeDown() turtle.placeDown()
turtle.digUp()
turtle.up() turtle.up()
turtle.digUp()
turtle.up() turtle.up()
end end