diff options
author | ForbiddenJ <justinscomputercreations@gmail.com> | 2017-04-04 02:25:27 -0500 |
---|---|---|
committer | Diego MartÃnez <kaeza@users.noreply.github.com> | 2017-04-04 05:27:37 -0300 |
commit | 00561161480e51632a0c546cf34fc62282c9fe06 (patch) | |
tree | 82b8343dbfe56cf436f0d884571696a3f4a7614a /tube_registration.lua | |
parent | 0639bb970666cfc9ec56f848c6334263fccaaa9f (diff) |
Namespace pollution cleanup (Used list at #154)
Diffstat (limited to 'tube_registration.lua')
-rw-r--r-- | tube_registration.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tube_registration.lua b/tube_registration.lua index c926216..c720755 100644 --- a/tube_registration.lua +++ b/tube_registration.lua @@ -44,7 +44,7 @@ local register_one_tube = function(name, tname, dropname, desc, plain, noctrs, e end for _, v in ipairs(connects) do - table.extend(outboxes, pipeworks.tube_boxes[v]) + pipeworks.table_extend(outboxes, pipeworks.tube_boxes[v]) table.insert(outsel, pipeworks.tube_selectboxes[v]) outimgs[vti[v]] = noctrs[v] end @@ -127,7 +127,7 @@ local register_one_tube = function(name, tname, dropname, desc, plain, noctrs, e nodedef.tube[key] = val end else - nodedef[key] = table.recursive_replace(value, "#id", tname) + nodedef[key] = pipeworks.table_recursive_replace(value, "#id", tname) end end |