From 5dc5c451a5e8b4ef998b3ede0990fcd441e0601b Mon Sep 17 00:00:00 2001 From: SkyMarshal Date: Wed, 22 Jan 2014 22:49:37 -0700 Subject: [PATCH] Fixes an error with the explosions-deleting-zone-air detection. --- code/ZAS/ZAS_Zones.dm | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/code/ZAS/ZAS_Zones.dm b/code/ZAS/ZAS_Zones.dm index d254debf0c2..db1e1b6f466 100644 --- a/code/ZAS/ZAS_Zones.dm +++ b/code/ZAS/ZAS_Zones.dm @@ -27,12 +27,6 @@ var/list/CounterDoorDirections = list(SOUTH,EAST) //Which directions doors turfs var/interactions_with_unsim = 0 var/progress = "nothing" - -/datum/gas_mixture/zone - Del() - CRASH("Something tried to delete a zone's air!") - . = ..() - //CREATION AND DELETION /zone/New(turf/start) . = ..() @@ -53,7 +47,7 @@ var/list/CounterDoorDirections = list(SOUTH,EAST) //Which directions doors turfs //Generate the gas_mixture for use in txhis zone by using the average of the gases //defined at startup. //Changed to try and find the source of the error. - air = new /datum/gas_mixture/zone() + air = new air.group_multiplier = contents.len for(var/turf/simulated/T in contents) if(!T.air)