From 63d8ddc67bc4ec23be3c7140997affc0d8f19a4e Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 23 Jan 2015 12:52:34 -0500 Subject: [PATCH] arg --> ... --- homedecor/nodeboxes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homedecor/nodeboxes.lua b/homedecor/nodeboxes.lua index 4c94f6d8..fe15a97d 100644 --- a/homedecor/nodeboxes.lua +++ b/homedecor/nodeboxes.lua @@ -23,7 +23,7 @@ mt.__index = function(table, key) local ref = homedecor.box[key] if type(ref) == "function" then return function(...) - return { type = "fixed", fixed = ref(unpack(arg)) } + return { type = "fixed", fixed = ref(...) } end elseif type(ref) == "table" then return { type = "fixed", fixed = ref }