Update src/main/programs/turtle-roomCreator.lua

This commit is contained in:
Julian Brammer 2024-05-31 22:40:44 +00:00
parent ee2d0cd7d6
commit 635ee1d845

View File

@ -35,4 +35,9 @@ function excavate(depth, width, height)
turtle.up() turtle.up()
end end
end end
--go to start pos
for h=1, height do
turtle.down()
end
end end