diff options
-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 |