From e26f579df2d6266864a39916c0cd9e7fc59c7edc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Grie=C3=9Fhaber?= Date: Sat, 3 Jan 2026 17:13:44 +0100 Subject: [PATCH] Fix logistic net export string --- info.json | 2 +- logistic-network-stats.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/info.json b/info.json index 59c2ef6..041bf35 100644 --- a/info.json +++ b/info.json @@ -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", diff --git a/logistic-network-stats.lua b/logistic-network-stats.lua index 48f9c04..b3323d6 100644 --- a/logistic-network-stats.lua +++ b/logistic-network-stats.lua @@ -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