summaryrefslogtreecommitdiffstats
path: root/acf/util.lua
diff options
context:
space:
mode:
Diffstat (limited to 'acf/util.lua')
-rw-r--r--acf/util.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/acf/util.lua b/acf/util.lua
index adb1e31..cc44fc2 100644
--- a/acf/util.lua
+++ b/acf/util.lua
@@ -31,6 +31,6 @@ end
function map(func, tbl)
local res = {}
- for k, v in pairs(tbl) do res[k] = func(copy(v)) end
+ for k, v in pairs(tbl) do res[k] = func(v) end
return res
end