From 69d4a9584d4d9e5ccd31a3c71464ba539f10d91d Mon Sep 17 00:00:00 2001 From: Desour Date: Thu, 25 Mar 2021 18:54:21 +0100 Subject: Fix on-state effector-receptor combos (eg. gates) recepting to everywhere --- mesecons/internal.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mesecons/internal.lua b/mesecons/internal.lua index 93eccf9..ba19e5b 100644 --- a/mesecons/internal.lua +++ b/mesecons/internal.lua @@ -449,8 +449,10 @@ function mesecon.turnoff(pos, link) -- Check if an onstate receptor is connected. If that is the case, -- abort this turnoff process by returning false. `receptor_off` will -- discard all the changes that we made in the voxelmanip: - if mesecon.is_receptor_on(mesecon.get_node_force(np).name) then - return false + if mesecon.rules_link_rule_all_inverted(f.pos, r)[1] then + if mesecon.is_receptor_on(mesecon.get_node_force(np).name) then + return false + end end -- Call turnoff on neighbors -- cgit v1.2.3