mirror of
https://github.com/joe7575/techpack.git
synced 2024-11-25 16:43:50 +01:00
undo preventing machines from pushing to themselves; make detector only accept items on the input side
This commit is contained in:
parent
ebd9864ce0
commit
281f4b539b
@ -139,7 +139,6 @@ local function get_dest_node(pos, side)
|
||||
local dir = side_to_dir(side, node.param2)
|
||||
local spos, sdir = Tube:get_connected_node_pos(pos, dir)
|
||||
if not (spos and sdir) then return end
|
||||
if vector.equals(pos, spos) then return end
|
||||
_,node = Tube:get_node(spos)
|
||||
local out_side = dir_to_side(tubelib2.Turn180Deg[sdir], node.param2)
|
||||
return spos, out_side, Name2Name[node.name] or node.name
|
||||
|
@ -131,6 +131,7 @@ minetest.register_craft({
|
||||
|
||||
tubelib.register_node("tubelib_addons1:detector", {"tubelib_addons1:detector_active"}, {
|
||||
on_push_item = function(pos, side, item)
|
||||
if side ~= "L" then return false end
|
||||
local player_name = minetest.get_meta(pos):get_string("player_name")
|
||||
if tubelib.push_items(pos, "R", item, player_name) then
|
||||
switch_on(pos)
|
||||
|
Loading…
Reference in New Issue
Block a user