mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 23:10:41 +01:00
cleanup duplicate call
no need to call get_inventory twice
This commit is contained in:
parent
08b660ba99
commit
8e077f8b02
|
@ -95,7 +95,7 @@ minetest.register_node("technic:injector", {
|
|||
if meta:get_int("splitstacks") == 1 then
|
||||
stack = stack:peek_item(1)
|
||||
end
|
||||
return meta:get_inventory():room_for_item("main", stack)
|
||||
return inv:room_for_item("main", stack)
|
||||
end,
|
||||
insert_object = function(pos, node, stack, direction)
|
||||
return minetest.get_meta(pos):get_inventory():add_item("main", stack)
|
||||
|
|
Loading…
Reference in New Issue
Block a user