diff options
Diffstat (limited to 'cactus.lua')
-rw-r--r-- | cactus.lua | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -72,6 +72,7 @@ local function move_linear(n) local dir = turtle.forward if n < 0 then dir = turtle.back end for i = 1,math.abs(n) do dir() end + print(POS,n,FACING) POS = POS + n*FACING end |