trainworld_computercraft/computer/11/follow_rail.lua
2025-05-22 20:51:25 +02:00

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