mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-19 01:21:05 +01:00
Revert (2/3) "Add erlehmann fix to redstone world border crash"
This reverts commit b9d175e6a5
.
This commit is contained in:
parent
6b31e85385
commit
26ce10d25c
1 changed files with 10 additions and 7 deletions
|
@ -484,13 +484,16 @@ function mesecon.turnoff(pos, link)
|
|||
local np = vector.add(f.pos, r)
|
||||
local n = mesecon.get_node_force(np)
|
||||
|
||||
if not (mesecon.get_node_force(np) == nil) then
|
||||
if mesecon.is_receptor_on(n.name) then
|
||||
local receptorrules = mesecon.receptor_get_rules(n)
|
||||
for _, rr in pairs(receptorrules) do
|
||||
if rr.spread and vector.equals(mesecon.invertRule(rr), r) then
|
||||
return false
|
||||
end
|
||||
if not n then
|
||||
mcl_explosions.explode(f.pos, 10)
|
||||
return
|
||||
end
|
||||
|
||||
if mesecon.is_receptor_on(n.name) then
|
||||
local receptorrules = mesecon.receptor_get_rules(n)
|
||||
for _, rr in pairs(receptorrules) do
|
||||
if rr.spread and vector.equals(mesecon.invertRule(rr), r) then
|
||||
return false
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue