Makes the trees spread slowly but also die off with certain condition. Made to be performant and multiplayer friendly. Very configurable.
The setting "Tree death by pollution bias = 7000" what does this exactly mean? Larger number trees die more quickly?
It is a bias number which is used to check if trees should die in a chunk. One or more trees may be killed by pollution using the following logic: if chunk pollution divided by bias is greater than a random decimal number between 1 and 2.
if chunk pollution divided by bias is greater than a random decimal number between 1 and 2
Or you can look at the source here: https://github.com/NoxyNixie/Noxys_Trees/blob/master/control.lua#L830