tool workshop shouldn't ever allow stack splitting

(tools don't stack :) )
This commit is contained in:
Vanessa Ezekowitz 2017-04-11 05:25:11 -04:00
parent ceead2b5ab
commit 64f38f423e
1 changed files with 1 additions and 2 deletions

View File

@ -103,8 +103,7 @@ minetest.register_node("technic:tool_workshop", {
allow_metadata_inventory_take = technic.machine_inventory_take,
tube = {
can_insert = function (pos, node, stack, direction)
local onestack = stack:peek_item(1)
return minetest.get_meta(pos):get_inventory():room_for_item("src", onestack)
return minetest.get_meta(pos):get_inventory():room_for_item("src", stack)
end,
insert_object = function (pos, node, stack, direction)
return minetest.get_meta(pos):get_inventory():add_item("src", stack)