This commit is contained in:
Julian Brammer 2024-06-17 02:25:06 +02:00
parent 418c3e782d
commit 59261590b3

View File

@ -27,11 +27,13 @@ end
turtle.up() turtle.up()
--do 3 rows --do 2 rows of fields
for i=1, 3 do for i=1, 2 do
--do 3 rows
for j=1, 3 do
--do one row --do one row
for j=1, 2 do for k=1, 2 do
for k=1, 3 do for l=1, 3 do
turtle.forward() turtle.forward()
local blockFound, blockData = turtle.inspectDown() local blockFound, blockData = turtle.inspectDown()
if blockFound then if blockFound then
@ -53,6 +55,10 @@ for i=1, 3 do
turtle.forward() turtle.forward()
turtle.turnLeft() turtle.turnLeft()
end end
end
turtle.turnLeft()
turtle.forward()
turtle.turnRight()
end end