diff options
author | Jeija <jeija@mesecons.net> | 2014-11-22 19:26:04 +0100 |
---|---|---|
committer | Jeija <jeija@mesecons.net> | 2014-11-22 19:26:04 +0100 |
commit | 241a7ed75fa2fdaae776d83919bcb84ffef10ca8 (patch) | |
tree | d439f55c1d702c2e74374b0c64aaa22acdf580b5 | |
parent | 93135be10c51b41b692cafea6f22358587a34b4f (diff) |
Fix minetest-mod-mesecons issue #188: Use digiline:tablecopy
-rw-r--r-- | digilines/util.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/digilines/util.lua b/digilines/util.lua index 9982257..d138d63 100644 --- a/digilines/util.lua +++ b/digilines/util.lua @@ -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 |