summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cactus.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/cactus.lua b/cactus.lua
index bea1eee..65ebf4e 100644
--- a/cactus.lua
+++ b/cactus.lua
@@ -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()