Remove miasma from default filtered gases (#42240)

Miasma buildup is never a serious issue since scrubbers remove most of it by
default. I removed it from default filtering so that either A) people have to
take care of corpses or B) air alarms have to be adjusted to deal with it.
This commit is contained in:
81Denton
2019-01-06 22:19:25 +01:00
committed by Tad Hardesty
parent fa281cacde
commit a29dbe48a7
@@ -514,7 +514,7 @@
for(var/device_id in A.air_scrub_names)
send_signal(device_id, list(
"power" = 1,
"set_filters" = list(/datum/gas/carbon_dioxide, /datum/gas/miasma),
"set_filters" = list(/datum/gas/carbon_dioxide),
"scrubbing" = 1,
"widenet" = 0,
))
@@ -567,7 +567,7 @@
for(var/device_id in A.air_scrub_names)
send_signal(device_id, list(
"power" = 1,
"set_filters" = list(/datum/gas/carbon_dioxide, /datum/gas/miasma),
"set_filters" = list(/datum/gas/carbon_dioxide),
"scrubbing" = 1,
"widenet" = 0,
))