Fix tube connection to filters

Tubes did not previously connect to filters when the filters were placed after the tube.
This commit is contained in:
Anthony 2013-04-01 14:21:39 -03:00
parent 23f889dfbc
commit d784213a94
1 changed files with 4 additions and 1 deletions

View File

@ -30,6 +30,9 @@ minetest.register_node("pipeworks:filter", {
local inv = meta:get_inventory()
return inv:is_empty("main")
end,
after_place_node = function(pos)
tube_scanforobjects(pos)
end,
mesecons={effector={action_on=function(pos,node)
minetest.registered_nodes[node.name].on_punch(pos,node,nil)
end}},
@ -470,4 +473,4 @@ function go_next(pos,velocity,stack)
velocity.z=chests[n].vect.z*speed
end
return 1
end
end