This commit is contained in:
Julian Brammer 2024-06-17 05:24:48 +02:00
parent d8ffbc5498
commit df573b4fe8

View File

@ -56,13 +56,10 @@ end
local function kiss()
turtle.up()
for i=1, 8 do
for j=1, 8 do
if i==1 and j==1 then
turtle.forward()
end
for i=1, 7 do
for j=1, 7 do
turtle.digDown()
turtle.suckDown()
@ -73,7 +70,7 @@ local function kiss()
end
turtle.placeDown()
if j<8 then
if j<7 and i~=1 then
turtle.forward()
end
end