From a29dbe48a7f3244dfdebcf161e9fa5d0f54a43bc Mon Sep 17 00:00:00 2001 From: 81Denton <32391752+81Denton@users.noreply.github.com> Date: Sun, 6 Jan 2019 22:19:25 +0100 Subject: [PATCH] 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. --- code/modules/atmospherics/machinery/airalarm.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/atmospherics/machinery/airalarm.dm b/code/modules/atmospherics/machinery/airalarm.dm index 0ffdd8cc426..441fd7b3b0f 100644 --- a/code/modules/atmospherics/machinery/airalarm.dm +++ b/code/modules/atmospherics/machinery/airalarm.dm @@ -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, ))