diff options
Diffstat (limited to 'technic/machines/other')
-rw-r--r-- | technic/machines/other/constructor.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/machines/other/constructor.lua b/technic/machines/other/constructor.lua index 3396ac7..9c64051 100644 --- a/technic/machines/other/constructor.lua +++ b/technic/machines/other/constructor.lua @@ -21,7 +21,7 @@ local function deploy_node(inv, slot_name, pos, node, machine_node) end if remove_to then for i = 1, remove_to do - inv:remove_item(drops[i]) + inv:remove_item(slot_name, drops[i]) end else minetest.remove_node(pos) |