9 lines
151 B
Lua
9 lines
151 B
Lua
while true do
|
|
status, block = turtle.inspect()
|
|
sleep(1)
|
|
if not status then
|
|
succ = turtle.forward()
|
|
print(succ)
|
|
end
|
|
end
|