From 32804d2a7f7a51f1483da91c91d2620d24cfc6f8 Mon Sep 17 00:00:00 2001 From: "bbusse@gmail.com" Date: Thu, 29 Sep 2011 01:53:20 +0000 Subject: [PATCH] Runtime fix for portable pumps IIN SPAACE git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2287 316c924e-a436-60f5-8080-3fe189b3f50e --- code/FEA/FEA_turf_tile.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/FEA/FEA_turf_tile.dm b/code/FEA/FEA_turf_tile.dm index cfbc4514d0b..b9e70451b1e 100644 --- a/code/FEA/FEA_turf_tile.dm +++ b/code/FEA/FEA_turf_tile.dm @@ -196,7 +196,8 @@ turf ..() assume_air(datum/gas_mixture/giver) - if(air) + var/datum/gas_mixture/receiver = air + if(istype(receiver)) if(parent&&parent.group_processing) if(!parent.air.check_then_merge(giver)) parent.suspend_group_processing()