From 7f580611f564bc4d67c3b77fc4866b4afb2fb98a Mon Sep 17 00:00:00 2001 From: Anthony Zhang Date: Mon, 29 Dec 2014 18:16:36 -0500 Subject: Fix some warnings. --- worldedit/serialization.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'worldedit') diff --git a/worldedit/serialization.lua b/worldedit/serialization.lua index e08699e..86b23ec 100644 --- a/worldedit/serialization.lua +++ b/worldedit/serialization.lua @@ -199,7 +199,7 @@ worldedit.allocate_with_nodes = function(origin_pos, nodes) local pos2x, pos2y, pos2z = -huge, -huge, -huge local origin_x, origin_y, origin_z = origin_pos.x, origin_pos.y, origin_pos.z for i, entry in ipairs(nodes) do - x, y, z = origin_x + entry.x, origin_y + entry.y, origin_z + entry.z + local x, y, z = origin_x + entry.x, origin_y + entry.y, origin_z + entry.z if x < pos1x then pos1x = x end if y < pos1y then pos1y = y end if z < pos1z then pos1z = z end -- cgit v1.2.3