This isn't really a problem right now, because the water from the offshore pump is what you'll likely be using.
However, because Electrolysis is a key part of my mod, I want to add Salt water too (so that it actually makes sense having to boil water to get salt, to add to pure water), unfortunately what I plan to do might mess with how steam engines work.
Is it possible to make it so that the generator tag can accept an array of fluids, not just one?
So this
Code: Select all
fluid_input =
{
name = "water",
amount = 0.0,
minimum_temperature = 100.0
},
Code: Select all
fluid_input =
{
fluids = {"water", "pure-water", "lithia-water"},
amount = 0.0,
minimum_temperature = 100.0
},
Code: Select all
fluid_input =
{
{
name = "water",
amount = 0.0,
minimum_temperature = 100.0
},
{
name = "pure-water",
amount = 0.0,
minimum_temperature = 100.0
},
{
name = "lithia-water",
amount = 0.0,
minimum_temperature = 100.0
},
},