View difference between Paste ID: fnMs72n2 and nZ2MQJ5b
SHOW: | | - or go back to the newest paste.
1
-- Resets the turtle to the
2
-- left to get ready for the next run,
3
-- when using the GetLava script.
4
5
turtle.turnLeft()
6
7
x = 0
8
9
while x < 2 do
10
  if turtle.forward() == true then
11
  x = x + 1
12
  else
13
    turtle.dig()
14
  end
15
end
16
17
turtle.turnRight()
18
turtle.select(1)