From cb63d072878f82b7e7c5a62b1f8fc4753e9063a7 Mon Sep 17 00:00:00 2001 From: 1080pCat <96908085+1080pCat@users.noreply.github.com> Date: Thu, 14 Sep 2023 05:55:00 +1000 Subject: [PATCH] Makes portable scrubbers and pumps take fire damage. (#22249) * mm atmos * Like this would be better. * oops * FALSE to NONE * deconflict+DGL review * oops * oops 3, third times the charm! --- code/modules/atmospherics/machinery/portable/portable_pump.dm | 1 + code/modules/atmospherics/machinery/portable/scrubber.dm | 1 + 2 files changed, 2 insertions(+) diff --git a/code/modules/atmospherics/machinery/portable/portable_pump.dm b/code/modules/atmospherics/machinery/portable/portable_pump.dm index 13d4c69695a..89aacb74b1b 100644 --- a/code/modules/atmospherics/machinery/portable/portable_pump.dm +++ b/code/modules/atmospherics/machinery/portable/portable_pump.dm @@ -16,6 +16,7 @@ var/direction = DIRECTION_IN /// The desired pressure the pump should be outputting, either into the atmosphere, or into a holding tank. target_pressure = 101.325 + resistance_flags = NONE /obj/machinery/atmospherics/portable/pump/examine(mob/user) . = ..() diff --git a/code/modules/atmospherics/machinery/portable/scrubber.dm b/code/modules/atmospherics/machinery/portable/scrubber.dm index ef1755f5221..c8ec38694ef 100644 --- a/code/modules/atmospherics/machinery/portable/scrubber.dm +++ b/code/modules/atmospherics/machinery/portable/scrubber.dm @@ -11,6 +11,7 @@ var/volume_rate = 101.325 /// Is this scrubber acting on the 3x3 area around it. var/widenet = FALSE + resistance_flags = NONE /obj/machinery/atmospherics/portable/scrubber/examine(mob/user) . = ..()