This commit is contained in:
Julian Brammer 2024-06-17 04:46:16 +02:00
parent 5a6cbadc0c
commit 71ad771eb6

View File

@ -56,9 +56,12 @@ end
local function kiss() local function kiss()
turtle.up() turtle.up()
turtle.forward()
for i=1, 7 do for i=1, 7 do
for j=1, 6 do for j=1, 6 do
if i==1 then
turtle.forward()
end
turtle.digDown() turtle.digDown()
turtle.suckDown() turtle.suckDown()
turtle.select(currentSeed) turtle.select(currentSeed)
@ -67,8 +70,10 @@ local function kiss()
currentSeed = 1 currentSeed = 1
end end
turtle.placeDown() turtle.placeDown()
turtle.forward()
end end
--got to next row
if i%2==1 and i<6 then if i%2==1 and i<6 then
turtle.turnRight() turtle.turnRight()
turtle.forward() turtle.forward()