diff options
author | FaceDeer <FaceDeer@users.noreply.github.com> | 2018-02-25 23:51:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-25 23:51:25 -0700 |
commit | 9cc52883265cab590da9ce6472c041a816737fd6 (patch) | |
tree | 6b2610fd7fc81b742a250bac27329b4b9618914d | |
parent | 33995bc6ecf5b497f4e6b84b72fb476acf203af7 (diff) | |
parent | 564bc1179932f5c7b21bc56b4f7aa55e7f121abb (diff) |
Merge pull request #18 from joejulian/broken_inventory_hack
Create missing tables
-rw-r--r-- | nodes/node_duplicator.lua | 5 | ||||
-rw-r--r-- | nodes/node_item_ejector.lua | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/nodes/node_duplicator.lua b/nodes/node_duplicator.lua index 7d20a65..4533bae 100644 --- a/nodes/node_duplicator.lua +++ b/nodes/node_duplicator.lua @@ -146,6 +146,9 @@ minetest.register_node("digtron:duplicator", { -- clear inventories of image's nodes for _, node_image in pairs(layout.inventories) do local main_inventory = node_image.meta.inventory.main + if type(main_inventory) ~= "table" then + main_inventory = {} + end for index, _ in pairs(main_inventory) do main_inventory[index] = ItemStack(nil) end @@ -175,4 +178,4 @@ minetest.register_node("digtron:duplicator", { end end, -})
\ No newline at end of file +}) diff --git a/nodes/node_item_ejector.lua b/nodes/node_item_ejector.lua index 6f9c64e..aa09909 100644 --- a/nodes/node_item_ejector.lua +++ b/nodes/node_item_ejector.lua @@ -67,6 +67,9 @@ local function eject_items(pos, node, player, eject_even_without_pipeworks) local source_index = nil local source_stack = nil for _, node_image in pairs(layout.inventories) do + if type(node_image.meta.inventory.main) ~= "table" then + node_image.meta.inventory.main = {} + end for index, item_stack in pairs(node_image.meta.inventory.main) do if item_stack:get_count() > 0 and not filter_items[item_stack:get_name()] then source_node = node_image |