Fix minetest-mod-mesecons issue #188: Use digiline:tablecopy

This commit is contained in:
Jeija 2014-11-22 19:26:04 +01:00
parent 93135be10c
commit 241a7ed75f
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ function digiline:tablecopy(table) -- deep table copy
for idx, item in pairs(table) do
if type(item) == "table" then
newtable[idx] = mesecon:tablecopy(item)
newtable[idx] = digiline:tablecopy(item)
else
newtable[idx] = item
end