From 622e644cfdb62be7a34dd1b318a476540c0d5b5a Mon Sep 17 00:00:00 2001 From: HybridDog Date: Sat, 7 Mar 2015 16:02:28 +0100 Subject: [PATCH] automatic update --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index ee8dfb0..86a6b72 100644 --- a/init.lua +++ b/init.lua @@ -241,7 +241,7 @@ function vector.sun_dir(time) end function vector.inside(pos, minp, maxp) - for _,i in ipairs({"x", "y", "z"}) do + for _,i in pairs({"x", "y", "z"}) do if pos[i] < minp[i] or pos[i] > maxp[i] then return false