From 7915e7f51e8aef77b52c6ad94c5e709456d4958d Mon Sep 17 00:00:00 2001 From: Zefram Date: Thu, 14 Aug 2014 21:59:15 +0100 Subject: Rename tube_item() to tube_inject_item() The new function has no API compatibility with the old one, so give it a different name to avoid confusion among caller mods, which need to change their usage. Have a function under the old name that outputs a helpful error message. --- tubes.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tubes.lua') diff --git a/tubes.lua b/tubes.lua index 10a7c64..e7e3579 100755 --- a/tubes.lua +++ b/tubes.lua @@ -496,7 +496,7 @@ if pipeworks.enable_sand_tube then for _, object in ipairs(minetest.get_objects_inside_radius(pos, 2)) do if not object:is_player() and object:get_luaentity() and object:get_luaentity().name == "__builtin:item" then if object:get_luaentity().itemstring ~= "" then - pipeworks.tube_item(pos, pos, vector.new(0, 0, 0), object:get_luaentity().itemstring) + pipeworks.tube_inject_item(pos, pos, vector.new(0, 0, 0), object:get_luaentity().itemstring) end object:get_luaentity().itemstring = "" object:remove() @@ -556,7 +556,7 @@ if pipeworks.enable_mese_sand_tube then for _,object in ipairs(get_objects_with_square_radius(pos, minetest.env:get_meta(pos):get_int("dist"))) do if not object:is_player() and object:get_luaentity() and object:get_luaentity().name == "__builtin:item" then if object:get_luaentity().itemstring ~= "" then - pipeworks.tube_item(pos, pos, vector.new(0, 0, 0), object:get_luaentity().itemstring) + pipeworks.tube_inject_item(pos, pos, vector.new(0, 0, 0), object:get_luaentity().itemstring) end object:get_luaentity().itemstring = "" object:remove() -- cgit v1.2.3