From 241a7ed75fa2fdaae776d83919bcb84ffef10ca8 Mon Sep 17 00:00:00 2001 From: Jeija Date: Sat, 22 Nov 2014 19:26:04 +0100 Subject: [PATCH] Fix minetest-mod-mesecons issue #188: Use digiline:tablecopy --- digilines/util.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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