bugfixes
This commit is contained in:
parent
6278a380e4
commit
378e560e04
@ -129,7 +129,7 @@ end
|
|||||||
|
|
||||||
-- Starts the overall power consumption and depending on that turns all nodes on/off
|
-- Starts the overall power consumption and depending on that turns all nodes on/off
|
||||||
local function start_network_power_consumption(pos, in_dir)
|
local function start_network_power_consumption(pos, in_dir)
|
||||||
print("start_network_power_consumption")
|
print("start_network_power_consumption", S(pos), in_dir)
|
||||||
Route = {}
|
Route = {}
|
||||||
local sum = power_consumption(pos, in_dir)
|
local sum = power_consumption(pos, in_dir)
|
||||||
Route = {}
|
Route = {}
|
||||||
@ -244,7 +244,7 @@ function techage.consumer.after_tube_update(node, pos, out_dir, peer_pos, peer_i
|
|||||||
local pwr_dir = get_power_dir(pos)
|
local pwr_dir = get_power_dir(pos)
|
||||||
mem.connections = mem.connections or {}
|
mem.connections = mem.connections or {}
|
||||||
-- Check direction
|
-- Check direction
|
||||||
--if not TP(pos).valid_power_dir(pos, pwr_dir, tubelib2.Turn180Deg[out_dir]) then return end
|
if not TP(pos).valid_power_dir(pos, pwr_dir, tubelib2.Turn180Deg[out_dir]) then return end
|
||||||
-- Only one connection is allowed, which can be overwritten, if necessary.
|
-- 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_pos or not next(mem.connections) or mem.connections[out_dir] then
|
||||||
if not peer_in_dir then
|
if not peer_in_dir then
|
||||||
|
@ -100,6 +100,7 @@ minetest.register_node("techage:generator", {
|
|||||||
turn_on = turn_power_on,
|
turn_on = turn_power_on,
|
||||||
read_power_consumption = generator.read_power_consumption,
|
read_power_consumption = generator.read_power_consumption,
|
||||||
power_network = Cable,
|
power_network = Cable,
|
||||||
|
power_side = "R",
|
||||||
},
|
},
|
||||||
|
|
||||||
after_place_node = function(pos, placer)
|
after_place_node = function(pos, placer)
|
||||||
|
Loading…
Reference in New Issue
Block a user