View difference between Paste ID: UEVL6sp4 and S5DC4m6Y
SHOW: | | - or go back to the newest paste.
1
-- Resets the turtle to the
2
-- right to get ready for the next run,
3
-- when using the GetLava script.
4
5
turtle.turnRight()
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.turnLeft()
18
turtle.select(1)