From 2faf9c7a9c368a5fb56a75e2d7f5c8a24812e4d1 Mon Sep 17 00:00:00 2001 From: Kreastr Date: Mon, 12 Nov 2012 02:41:12 +0200 Subject: [PATCH] The groups exist, but the lists do not. --- code/ATMOSPHERICS/components/unary/vent_pump.dm | 2 +- code/ATMOSPHERICS/components/unary/vent_scrubber.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/ATMOSPHERICS/components/unary/vent_pump.dm b/code/ATMOSPHERICS/components/unary/vent_pump.dm index 4a75d6576eb..7b9444d8902 100644 --- a/code/ATMOSPHERICS/components/unary/vent_pump.dm +++ b/code/ATMOSPHERICS/components/unary/vent_pump.dm @@ -324,7 +324,7 @@ del(src) /obj/machinery/atmospherics/unary/vent_pump/Del() - if (initial_loc) + if (initial_loc.air_scrub_info) initial_loc.air_scrub_info -= id_tag ..() return diff --git a/code/ATMOSPHERICS/components/unary/vent_scrubber.dm b/code/ATMOSPHERICS/components/unary/vent_scrubber.dm index 57cfc501461..84378df3d14 100644 --- a/code/ATMOSPHERICS/components/unary/vent_scrubber.dm +++ b/code/ATMOSPHERICS/components/unary/vent_scrubber.dm @@ -260,7 +260,7 @@ del(src) /obj/machinery/atmospherics/unary/vent_scrubber/Del() - if (initial_loc) + if (initial_loc.air_scrub_info) initial_loc.air_scrub_info -= id_tag ..() return