[0.15.37]Why does my recipe take the name of the output item
Posted: Thu Oct 26, 2017 10:50 am
I have the following recipe
With the following line in recipe-name.cfg
I would expect the recipe to be called 'Burner to Electric inserter' in the crafting GUI. The actual name that appears is 'Inserter' which is the name of the output item. This is consistent with the other recipes that have a single result. The recipes that result in multiple items do take the name of the recipe-name.cfg whitch shows to me that the config gets used.
The question now is why the recipe takes the name of the output item if there is a different name defined for it.
Code: Select all
{
type = "recipe",
name = "burner-to-electric-inserter",
order = "b",
icon = "__upgrade-machines__/graphics/icons/burner-to-electric-inserter.png",
subgroup = "upgrade-machines",
ingredients = {
{ "electronic-circuit", 1 },
{ "burner-inserter", 1 }
},
result = "inserter",
energy_required = 1,
enabled = true
},
Code: Select all
burner-to-electric-inserter=Burner to Electric inserter
The question now is why the recipe takes the name of the output item if there is a different name defined for it.