Inconsistent heading lines for research effects
Posted: Tue Jan 28, 2020 12:12 pm
Bio Industries contains these recipes for biomass conversion:
These are the localized names:
These recipes are unlocked by researching Advanced Biotechnology. If I select that in the research tree, I'll see this under "Effects":
The heading is different ("Bio fuel conversion 1: Cellulose, Light-oil" vs. "20 x Petroleum (Recipe)") because the first recipe has multiple products while the second has only one. That's inconsistent! Things are even worse because there actually are 4 different recipes for biomass conversion that get unlocked: recipes 1 and 4 have multiple products, so their effect is labeled "Bio fuel conversion x: …"; recipes 2 and 3 have only one product, so the label just contains the number and name of the respective product.
The inconsisting label is confusing. In fact, I filed a bug against Bio Industries because I couldn't find the technology that would unlock "Bio fuel conversion 2" before realizing that it was Factorio's doing.
Would you consider using the localized recipe name as label even for recipes that result in only one product?
Code: Select all
---- Biomass to Light-oil
{
type = "recipe",
name = "bi_recipe_biomass_conversion_1",
[…]
results=
{
{type="item", name="bi-cellulose", amount=2},
{type="fluid", name="light-oil", amount=80},
},
[…]
},
---- Biomass to PG
{
type = "recipe",
name = "bi_recipe_biomass_conversion_2",
[…]
results=
{
{type="fluid", name="petroleum-gas", amount=20}
},
[…]
},
Code: Select all
[recipe-name]
[…]
bi_recipe_biomass_conversion_1=Bio fuel conversion 1: Cellulose, Light-oil
bi_recipe_biomass_conversion_2=Bio fuel conversion 2: Petroleum gas
[…]
The inconsisting label is confusing. In fact, I filed a bug against Bio Industries because I couldn't find the technology that would unlock "Bio fuel conversion 2" before realizing that it was Factorio's doing.
Would you consider using the localized recipe name as label even for recipes that result in only one product?