mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-10 18:23:01 +00:00
Bugfix table_map: avoid infinite loop
This commit is contained in:
parent
a5c6e82ef3
commit
0498125ca7
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ function worldeditadditions.table_map(tbl, func)
|
|||
local result = {}
|
||||
for i,value in ipairs(tbl) do
|
||||
local newval = func(value, i)
|
||||
if newval ~= nil then table.insert(tbl, newval) end
|
||||
if newval ~= nil then table.insert(result, newval) end
|
||||
end
|
||||
return result
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue