oops, commas would be nice.

This commit is contained in:
Vanessa Dannenberg 2019-04-02 18:16:33 -04:00 committed by sofar
parent 9508a004d0
commit f70600db30
1 changed files with 2 additions and 2 deletions

View File

@ -131,8 +131,8 @@ end
local function posLimit(pos)
return {
x = math.max(math.min(pos.x, 31000), -31000)
y = math.max(math.min(pos.y, 31000), -31000)
x = math.max(math.min(pos.x, 31000), -31000),
y = math.max(math.min(pos.y, 31000), -31000),
z = math.max(math.min(pos.z, 31000), -31000)
}
end