junction bugfix

This commit is contained in:
Joachim Stolberg 2019-03-03 20:17:54 +01:00
parent 712ff6aef1
commit 7233be550b

View File

@ -71,12 +71,14 @@ local function power_consumption(pos, dir)
for out_dir,item in pairs(conn) do
-- Not in the opposite direction
if out_dir ~= tubelib2.Turn180Deg[dir or 0] then
if item.pos then
this = TP(item.pos)
if this and this.power_consumption then
val = val + this.power_consumption(item.pos, item.in_dir)
end
end
end
end
return val
end
@ -99,6 +101,7 @@ local function turn_on(pos, dir, on)
for out_dir,item in pairs(conn) do
-- Not in the opposite direction
if out_dir ~= tubelib2.Turn180Deg[dir or 0] then
if item.pos then
local this = TP(item.pos)
if this and this.turn_on then
this.turn_on(item.pos, item.in_dir, on)
@ -109,6 +112,7 @@ local function turn_on(pos, dir, on)
turn_on(item.pos, item.in_dir, on)
end
end
end
end
@ -162,7 +166,7 @@ function techage.generator_after_tube_update(node, pos, out_dir, peer_pos, peer_
local mem = tubelib2.get_mem(pos)
if out_dir == mem.power_dir then
if not peer_in_dir then
mem.connections = {[out_dir] = nil} -- del connection
mem.connections = {} -- del connection
else
-- Generator accept one dir only
mem.connections = {[out_dir] = {pos = peer_pos, in_dir = peer_in_dir}}
@ -203,7 +207,7 @@ function techage.distributor_after_tube_update(node, pos, out_dir, peer_pos, pee
local mem = tubelib2.get_mem(pos)
mem.connections = mem.connections or {}
if not peer_in_dir then
mem.connections = {[out_dir] = nil} -- del connection
mem.connections[out_dir] = nil -- del connection
else
mem.connections[out_dir] = {pos = peer_pos, in_dir = peer_in_dir}
end
@ -236,7 +240,7 @@ function techage.consumer_after_tube_update(node, pos, out_dir, peer_pos, peer_i
-- Only one connection is allowed, which can be overwritten, if necessary.
if not peer_pos or not next(mem.connections) or mem.connections[out_dir] then
if not peer_in_dir then
mem.connections = {[out_dir] = nil} -- del connection
mem.connections = {} -- del connection
else
mem.connections = {[out_dir] = {pos = peer_pos, in_dir = peer_in_dir}}
end