diff options
Diffstat (limited to 'cactus.lua')
-rw-r--r-- | cactus.lua | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -108,9 +108,13 @@ turn_to_face(vector.new(0,0,1)) local function do_column() if turtle.detectDown() then - for i =1,4 do turtle.turnRight() end + turtle.digDown() + turtle.down() + turtle.digDown() + turtle.up() end end + repeat repeat do_column() |