Attempt at fixing move to.

This commit is contained in:
Harrison Deng 2021-05-09 14:24:06 -05:00
parent 68d94036cc
commit 157f340e6c

View File

@ -381,9 +381,11 @@ local function moveTo(dest, relative)
if relative then if relative then
forward = relHeading forward = relHeading
right = relRightAxis right = relRightAxis
pos = relativePos
else else
forward = heading forward = heading
right = rightAxis right = rightAxis
pos = position
end end
dest = dest:round() dest = dest:round()