diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-10-15 00:44:12 -0600 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-10-15 00:44:12 -0600 |
commit | 51b76e193db19a5c06f2a371a8300aeb5601a08f (patch) | |
tree | c525e04f70541d3c17a2f7fa2ed7d80a5f48f9fd /class_layout.lua | |
parent | 3bfabe8981fd2b491d27d7ac5e855165016f840c (diff) |
restoring "emergency abort" functionality to auto-controller
Diffstat (limited to 'class_layout.lua')
-rw-r--r-- | class_layout.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/class_layout.lua b/class_layout.lua index 83f3c8b..d18004a 100644 --- a/class_layout.lua +++ b/class_layout.lua @@ -12,7 +12,7 @@ local get_node_image = function(pos, node) node_image.paramtype2 = node_def.paramtype2 local meta = minetest.get_meta(pos) node_image.meta = meta:to_table() - if node_image.meta ~= nil then + if node_image.meta ~= nil and node_def._digtron_formspec ~= nil then node_image.meta.fields.formspec = node_def._digtron_formspec -- causes formspec to be automatically upgraded whenever Digtron moves end |