diff --git a/src/brulijam/t-farmer.lua b/src/brulijam/t-farmer.lua index 29f4e3b..8b789fd 100644 --- a/src/brulijam/t-farmer.lua +++ b/src/brulijam/t-farmer.lua @@ -56,9 +56,12 @@ end local function kiss() turtle.up() - turtle.forward() + for i=1, 7 do for j=1, 6 do + if i==1 then + turtle.forward() + end turtle.digDown() turtle.suckDown() turtle.select(currentSeed) @@ -67,8 +70,10 @@ local function kiss() currentSeed = 1 end turtle.placeDown() - turtle.forward() + end + + --got to next row if i%2==1 and i<6 then turtle.turnRight() turtle.forward()