This commit is contained in:
Crispy 2025-06-22 00:08:46 +02:00
parent f8fd2513c8
commit 491112768c
27 changed files with 1095 additions and 3537 deletions

11
computer/24/remove.lua Normal file
View file

@ -0,0 +1,11 @@
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