Hope you dont mind but I quickly threw together changes in the mod (locally) including new configuration settings that seem to do the trick. I didnt bother to try to update the vent vs active vent pollution rate setting and added an override for pollution and suffocation.
Also the attrition due to pollution was completely annoying and I commented that out altogether. Def something that should be a configuration.
My code changes here (temporarily) if you want to use it for your update at all: https://filebin.net/neho1rl2d2mhtqqz
Note this is an auto expiring link but the gist is to add a boolean in the settings.lua for disable-suffocation then in control.lua wrap the logic to enable (or disable) the suffocation update, this version makes it off by default:
if not settings.global["disable-suffocation"].value then
-- player suffocation damage
for _,p in pairs(game.players) do
if p.character and is_subsurface(p.surface) and p.surface.get_pollution(p.position) > suffocation_threshold then
p.character.damage(suffocation_damage, game.forces.neutral, "poison")
if (event.tick - 1) % 256 == 0 then p.print({"subsurface.suffocation"}, {1, 0, 0}) end
end
end
end
And the same approach for altering pollution values in control.lua
...if settings.global["pollution-override"].value then
Just be sure to add a locale for the mod setting name and description for these new fields.