From 02b8d18f71fdec9d17556dfa9247eb1606c6469e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Grie=C3=9Fhaber?= Date: Sat, 3 Jan 2026 17:18:35 +0100 Subject: [PATCH] Fix Player built stat export string --- game-stats.lua | 2 +- info.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/game-stats.lua b/game-stats.lua index baf06f1..a982a2d 100644 --- a/game-stats.lua +++ b/game-stats.lua @@ -36,7 +36,7 @@ function GetPlayerEntityStats() entityParts[#entityParts+1] = ("%s:%s:deconstructed:%s:%s"):format(playerIndex,playerName,itemName,itemCount) end end - return table.concat(entityParts) + return table.concat(entityParts,"\n") end function GetMapSeed() diff --git a/info.json b/info.json index 041bf35..84010e3 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "factorio-metrics-exporter", - "version": "0.1.15", + "version": "0.1.16", "title": "Prometheus Metrics Exporter", "author": "Jan Grießhaber", "contact": "jan@griesshaber.systems",