From f70600db30e94687470042a44e7f1127853ac3e3 Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Tue, 2 Apr 2019 18:16:33 -0400 Subject: [PATCH] oops, commas would be nice. --- pos.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pos.lua b/pos.lua index e97e4fc..f969aaa 100644 --- a/pos.lua +++ b/pos.lua @@ -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