Merge branch 'pipeworks_fix_connected_chests' into NALC2

This commit is contained in:
sys4-fr 2017-04-09 14:22:58 +02:00
commit 09d73bb968
1 changed files with 3 additions and 0 deletions

View File

@ -150,6 +150,9 @@ local function punch_filter(data, filtpos, filtnode, msg)
local v_mul = vector.multiply(dir, 2)
frompos = vector.subtract(filtpos, v_mul)
fromnode = minetest.get_node(frompos)
if fromnode and fromnode.name ~= "connected_chests:chest_left" then
return
end
end
if not fromnode then return end