Změnit "basic_machines/constructor.lua"

This commit is contained in:
Milan2018 2020-03-17 17:04:18 +01:00
parent 00bb940b8a
commit 3b42ddd002
1 changed files with 17 additions and 0 deletions

View File

@ -205,6 +205,23 @@ minetest.register_node("basic_machines:constructor", {
constructor_update_meta(pos);
end,
tube = {
insert_object = function(pos, node, stack, direction)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
return inv:add_item("main", stack)
end,
can_insert = function(pos, node, stack, direction)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
if meta:get_int("split_material_stacks") == 1 then
stack = stack:peek_item(1)
end
return inv:room_for_item("main", stack)
end,
input_inventory = "main",
connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1, top = 1}
},
})