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

View file

@ -57,6 +57,9 @@ end
function goForward()
if turtle.forward() then
_G.pos = _G.pos + vecOf[_G.facing]
if math.random(10) > 9 then
meow()
end
else
printError("failed to go forward")
printError(pos)
@ -106,4 +109,4 @@ end
function goHome()
goTo(vector.new(0,0,0), "south")
end
end