This commit is contained in:
Julian Brammer 2024-06-21 01:02:25 +02:00
parent c37fb479da
commit e3a4a1322c

View File

@ -27,7 +27,7 @@ local function forward(x, y, z, r)
x = x - 1 x = x - 1
elseif r == 2 then elseif r == 2 then
z = z - 1 z = z - 1
else elseif r == 3 then
x = x + 1 x = x + 1
end end
end end
@ -42,7 +42,7 @@ local function back(x, y, z, r)
x = x + 1 x = x + 1
elseif r == 2 then elseif r == 2 then
z = z + 1 z = z + 1
else elseif r == 3 then
x = x - 1 x = x - 1
end end
end end