diff --git a/.vscode/settings.json b/.vscode/settings.json index e06d64e..2fa9811 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,6 @@ { "Lua.workspace.userThirdParty": [ - "c:\\Users\\jangr\\AppData\\Roaming\\Code\\User\\workspaceStorage\\7cc4b07e291c43ff9c178f1dad6e0f26\\justarandomgeek.factoriomod-debug\\sumneko-3rd" + "c:\\Users\\jangr\\AppData\\Roaming\\Code\\User\\workspaceStorage\\efbcb086d2b4a3aca622c4db8c3b2aec\\justarandomgeek.factoriomod-debug\\sumneko-3rd" ], "Lua.workspace.checkThirdParty": "ApplyInMemory", "factorio.versions": [ diff --git a/control.lua b/control.lua index 9bf7fbd..86344e0 100644 --- a/control.lua +++ b/control.lua @@ -234,6 +234,7 @@ function SendGameStats() returnParts[#returnParts + 1] = GetMapSeed() returnParts[#returnParts + 1] = GetEvolution() returnParts[#returnParts + 1] = GetRocketsLaunched() + returnParts[#returnParts + 1] = GetReactorExplosions() returnParts[#returnParts + 1] = GetTotalPlayTime() returnParts[#returnParts + 1] = GetPlayerTime() returnParts[#returnParts + 1] = GetPlayerDeaths() diff --git a/data.lua b/data.lua index d603015..5aa8b8e 100644 --- a/data.lua +++ b/data.lua @@ -1,4 +1,3 @@ --- ENTITY local entity = table.deepcopy(data.raw["constant-combinator"]["constant-combinator"]) entity.name = "metrics-combinator" @@ -9,7 +8,6 @@ entity.minable = { entity.allow_copy_paste = true entity.icon = "__base__/graphics/icons/constant-combinator.png" entity.icon_size = 64 ---entity.operable = false entity.flags = { "get-by-unit-number", "placeable-neutral", "placeable-player" } -- ITEM @@ -24,7 +22,6 @@ local item = { stack_size = 50 } --- RECIPE (sichtbar von Spielstart) local recipe = { type = "recipe", name = "metrics-combinator", diff --git a/info.json b/info.json index af2a536..90dae8c 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "factorio-metrics-exporter", - "version": "0.3.1", + "version": "0.3.2", "title": "Prometheus Metrics Exporter", "author": "Jan Grießhaber", "contact": "jan@griesshaber.systems",