Page 1 of 1

[0.17.x] Fluid barreling recipe should check fluid.localised_name

Posted: Fri May 24, 2019 11:27 am
by eradicator
Currently the function for generating barreling recipes assings the wrong name if the fluid itself uses a localised name. This can be fixed by adding "fluid.localised_name or" into the assignment like this:

Code: Select all

localised_name = {"recipe-name.fill-barrel", fluid.localised_name or {"fluid-name." .. fluid.name}},

Re: [0.17.x] Fluid barreling recipe should check fluid.localised_name

Posted: Fri May 24, 2019 5:11 pm
by Klonan
Fixed for the next release

Re: [0.17.x] Fluid barreling recipe should check fluid.localised_name

Posted: Fri May 24, 2019 5:15 pm
by eradicator
Thank you.