Changed item_drop to add_item for items dropped during transport.

item_drop makes Minetest 0.4.13 crash, but add_item works in all
versions and the behavior is identical when looking at the blocks.
This commit is contained in:
greencopper 2016-02-21 00:02:41 +01:00 committed by Auke Kok
parent a107ca40f0
commit e30364b2dd
1 changed files with 4 additions and 1 deletions

View File

@ -249,7 +249,10 @@ luaentity.register_entity("pipeworks:tubed_item", {
if not found_next then
drop_pos = minetest.find_node_near(vector.add(self.start_pos, velocity), 1, "air")
if drop_pos then
minetest.item_drop(stack, nil, drop_pos)
-- Using add_item instead of item_drop since this makes pipeworks backward
-- compatible with Minetest 0.4.13.
-- Using item_drop here makes Minetest 0.4.13 crash.
minetest.add_item(drop_pos, stack)
self:remove()
return
end