12 lines
157 B
Lua
12 lines
157 B
Lua
function step()
|
|
exists, data = turtle.inspectDown()
|
|
if exists then
|
|
|
|
end
|
|
end
|
|
|
|
function follow_rail()
|
|
while true do
|
|
step()
|
|
end
|
|
end
|