mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-06 02:00:39 +02:00
Handle both pipeworks APIs
The new API function is now renamed to pipeworks.tube_inject_item(), so use it under that name. If it is not available, synthesise the new API in terms of the old one.
This commit is contained in:
@ -13,7 +13,7 @@ local function inject_items (pos)
|
||||
local item0=stack:to_table()
|
||||
if item0 then
|
||||
item0["count"] = "1"
|
||||
pipeworks.tube_item(pos, pos, vector.new(0, -1, 0), item0)
|
||||
technic.tube_inject_item(pos, pos, vector.new(0, -1, 0), item0)
|
||||
stack:take_item(1)
|
||||
inv:set_stack("main", i, stack)
|
||||
return
|
||||
@ -28,7 +28,7 @@ local function inject_items (pos)
|
||||
if stack then
|
||||
local item0=stack:to_table()
|
||||
if item0 then
|
||||
pipeworks.tube_item(pos, pos, vector.new(0, -1, 0), item0)
|
||||
technic.tube_inject_item(pos, pos, vector.new(0, -1, 0), item0)
|
||||
stack:clear()
|
||||
inv:set_stack("main", i, stack)
|
||||
return
|
||||
|
Reference in New Issue
Block a user