Is there a way to stop trees from removing polution
Is there a way to stop trees from removing polution
Is there a way to stop trees from removing pollution? In an ideal world, the only way to remove pollution would be because bitters absorbed it.
What I am trying to do, is to create some settings, where there are almost constant bitter attacks, but where expansion is not a chore, because you have to clear 100 bases just to expand.
I tried to create a world with
Diffusion ratio: 10%
Dissipation ratio: 0
Minimum damage to trees: 9999
Absorbed per damaged tree: 0
But trees still absorb the pollution -(
What I am trying to do, is to create some settings, where there are almost constant bitter attacks, but where expansion is not a chore, because you have to clear 100 bases just to expand.
I tried to create a world with
Diffusion ratio: 10%
Dissipation ratio: 0
Minimum damage to trees: 9999
Absorbed per damaged tree: 0
But trees still absorb the pollution -(
Re: Is there a way to stop trees from removing polution
You need to make a mod with something like this in data.lua:
Code: Select all
for _,tree in pairs(data.raw.tree) do
tree.emissions_per_tick = 0
end
Re: Is there a way to stop trees from removing polution
thanks, I might start a mod thenDaveMcW wrote:You need to make a mod with something like this in data.lua:
Code: Select all
for _,tree in pairs(data.raw.tree) do tree.emissions_per_tick = 0 end
![Smile :)](./images/smilies/icon_e_smile.gif)
But then what does "Absorbed per damaged tree:" do then? I thought this was the way pollution got absorbed by trees.
Re: Is there a way to stop trees from removing polution
When polution gets too high it can damage trees. You probably won't notice this if you clear the trees around your factory as there may not be any trees left in chunks where pollution is high enough to cause damage.mtilsted wrote:But then what does "Absorbed per damaged tree:" do then? I thought this was the way pollution got absorbed by trees.
Re: Is there a way to stop trees from removing polution
I don't think that part works correct then. I tried to start a game with both "Minimum damage to trees:" and "Absorbed per damaged tree" set to 68 (The lowest possible value > 0) and even when a square had over 500 pollution, i newer saw a single tree take damage.Tubig wrote:When polution gets too high it can damage trees. You probably won't notice this if you clear the trees around your factory as there may not be any trees left in chunks where pollution is high enough to cause damage.mtilsted wrote:But then what does "Absorbed per damaged tree:" do then? I thought this was the way pollution got absorbed by trees.
Re: Is there a way to stop trees from removing polution
They don't take damage in the sense of losing HP (like they do when you drive into them) - they just gradually get more brown and withered until eventually they look "dead". See https://www.reddit.com/r/factorio/comme ... _there_is/ for a before/after shot of what it looks like.
- featherwinglove
- Filter Inserter
- Posts: 579
- Joined: Sat Jun 25, 2016 6:14 am
- Contact:
-
- Fast Inserter
- Posts: 124
- Joined: Sun Mar 06, 2016 9:58 pm
- Contact:
Re: Is there a way to stop trees from removing polution
Here was breath flag, that means pollution removing.
Re: Is there a way to stop trees from removing polution
Besides trees tiles also absorb pollution.
https://wiki.factorio.com/Pollution
https://wiki.factorio.com/Pollution
So you need to also modify all tiles in the world.Every chunk has a natural absorption rate per tick which is determined by the weighted average of its floor tiles.