Page 1 of 1

Restrict target fluids from basic fluid transport entities

Posted: Fri Feb 03, 2023 11:11 am
by DemerNkardaz
For some liquids as logic we need different storage and transport materials.
Now I have Aqua Regia, and iron storages/pipes not good for this for IRL.
Can I blacklist some fluids for basic pipes and storages, or if not - can to give damage if pipes and storages have this fluids inside?
Image

Re: Restrict target fluids from basic fluid transport entities

Posted: Fri Feb 03, 2023 12:22 pm
by Stringweasel
It's not possible to blacklist certain fluids from certain pipes. All you can do with prototypes is allow only a single fluid to be allowed in a pipe, by setting a filter.

During runtime it's possible to damage pipes when a specific fluid is in it, but you will have to do it all yourself. Keep track of every pipe, and occationally chech if a pipe has a bad fluid inside, and if it does, add damage. You cannot prevent the fluid from entering though.

Re: Restrict target fluids from basic fluid transport entities

Posted: Fri Feb 03, 2023 1:05 pm
by DemerNkardaz
Stringweasel wrote: Fri Feb 03, 2023 12:22 pm It's not possible to blacklist certain fluids from certain pipes. All you can do with prototypes is allow only a single fluid to be allowed in a pipe, by setting a filter.

During runtime it's possible to damage pipes when a specific fluid is in it, but you will have to do it all yourself. Keep track of every pipe, and occationally chech if a pipe has a bad fluid inside, and if it does, add damage. You cannot prevent the fluid from entering though.
Thanks