trainworld_computercraft/computer/24/remove.lua
2025-06-22 00:08:46 +02:00

11 lines
210 B
Lua

function step()
if turtle.dig()then
turtle.forward()
return true
end
turtle.turnLeft()
turtle.forward()
turtle.turnRight()
return turtle.detect()
end
while step() do end