Code: Select all
for name, nets in pairs(force.logistic_networks) do
local netData = {}
for i, net in ipairs(nets) do
local data = {
items = net.get_contents(),
available_logistic_robots = net.available_logistic_robots,
all_logistic_robots = net.all_logistic_robots,
all_construction_robots = net.all_construction_robots,
available_construction_robots = net.available_construction_robots,
}
netData[#netData + 1] = data
end
statistic.logistics[name] = netData
end
"low-density-structure": 4294967242
This appears to happen when the amount available in the network is zero, and it is being requested.
If I disable the rocket building, the number goes to a small integer of approximately the value I'd expect, once the requestor chests are satisfied.