Hi guys,
The rocket-part production does not seem to appear in the LuaFlowStatistics data.
Or am I blind again ? Then Rseding91 will taunt me again...
[Rseding91] Rocket-part in FlowStatistics ?
[Rseding91] Rocket-part in FlowStatistics ?
My mods on the Factorio Mod Portal
Re: Rocket-part in FlowStatistics ?
"rocket parts" aren't an actual item so they don't show in the item production stats.
If you want to get ahold of me I'm almost always on Discord.
Re: Rocket-part in FlowStatistics ?
Code: Select all
{
type = "item",
name = "rocket-part",
icon = "__base__/graphics/icons/rocket-part.png",
flags = {"goes-to-main-inventory", "hidden"},
subgroup = "intermediate-product",
order = "o[rocket-part]",
stack_size = 5
},
Code: Select all
{
type = "recipe",
name = "rocket-part",
energy_required = 3,
enabled = false,
hidden = true,
category = "rocket-building",
ingredients =
{
{"low-density-structure", 10},
{"rocket-fuel", 10},
{"rocket-control-unit", 10}
},
result= "rocket-part"
},
As it is the ultimate product of the game (with the satellite), it would be nice to have its production number (for my forcoming prod/stats mod )
My mods on the Factorio Mod Portal
Re: [Rseding91] Rocket-part in FlowStatistics ?
Fixed for 0.13.9.
If you want to get ahold of me I'm almost always on Discord.
Re: [Rseding91] Rocket-part in FlowStatistics ?
cool ! thx guy !Rseding91 wrote:Fixed for 0.13.9.
My mods on the Factorio Mod Portal