From aa95770093f54ab4cb6b6bb4b1e352b5303dd2dc Mon Sep 17 00:00:00 2001 From: AnturK Date: Sat, 20 May 2017 17:00:54 +0200 Subject: [PATCH] Fixes built air meters --- code/modules/atmospherics/machinery/other/meter.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/other/meter.dm b/code/modules/atmospherics/machinery/other/meter.dm index bd9f3e35df2..a4032102423 100644 --- a/code/modules/atmospherics/machinery/other/meter.dm +++ b/code/modules/atmospherics/machinery/other/meter.dm @@ -19,7 +19,7 @@ /obj/machinery/meter/Initialize(mapload) . = ..() SSair.atmos_machinery += src - if (mapload && !target) + if (!target) target = locate(/obj/machinery/atmospherics/pipe) in loc /obj/machinery/meter/Destroy()