update areas

master
Vanessa Dannenberg 2019-04-02 18:19:02 -04:00
parent 4ebefe20c9
commit dda854cf06
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