Private
Public Access
1
0

Fix logistic net export string

This commit is contained in:
Jan Grießhaber
2026-01-03 17:13:44 +01:00
parent 04b613b959
commit e26f579df2
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "factorio-metrics-exporter",
"version": "0.1.14",
"version": "0.1.15",
"title": "Prometheus Metrics Exporter",
"author": "Jan Grießhaber",
"contact": "jan@griesshaber.systems",

View File

@@ -33,7 +33,7 @@ end
function SendLogisticStats()
if options.enableRobots then
local send = GetAllLogisticGrids()..GetLogisticNetworkContents()
local send = GetAllLogisticGrids().."\n"..GetLogisticNetworkContents()
helpers.send_udp(udpAddress,send,serverIndex)
end
end