From c5f2df0aeb9e558ee2af6b962ce250ca1387bd65 Mon Sep 17 00:00:00 2001 From: SkyMarshal Date: Thu, 26 Jul 2012 11:55:19 -0700 Subject: [PATCH] ZAS fixes. --- code/ZAS/FEA_system.dm | 11 ++++------- code/setup.dm | 6 +++--- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/code/ZAS/FEA_system.dm b/code/ZAS/FEA_system.dm index 4f9bc2aa11f..27ce9995e19 100644 --- a/code/ZAS/FEA_system.dm +++ b/code/ZAS/FEA_system.dm @@ -136,15 +136,12 @@ datum var/start_time = world.timeofday for(var/turf/simulated/S in world) - if(S.z < 5) - if(!S.zone && !S.blocks_air) - if(S.CanPass(null, S, 0, 0)) - new/zone(S) + if(!S.zone && !S.blocks_air) + if(S.CanPass(null, S, 0, 0)) + new/zone(S) for(var/turf/simulated/S in world) - if(S.z < 5) - S.update_air_properties() - // S.check_connections() + S.update_air_properties() world << "\red \b Geometry processed in [time2text(world.timeofday-start_time, "mm:ss")] minutes!" spawn start() diff --git a/code/setup.dm b/code/setup.dm index 9060feafac7..9be56d9f79e 100644 --- a/code/setup.dm +++ b/code/setup.dm @@ -19,9 +19,9 @@ #define MOLES_PLASMA_VISIBLE 0.5 //Moles in a standard cell after which plasma is visible -#define SPECIFIC_HEAT_TOXIN 700 -#define SPECIFIC_HEAT_AIR 100 -#define SPECIFIC_HEAT_CDO 150 +#define SPECIFIC_HEAT_TOXIN 200 +#define SPECIFIC_HEAT_AIR 20 +#define SPECIFIC_HEAT_CDO 30 #define HEAT_CAPACITY_CALCULATION(oxygen,carbon_dioxide,nitrogen,toxins) \ (carbon_dioxide*SPECIFIC_HEAT_CDO + (oxygen+nitrogen)*SPECIFIC_HEAT_AIR + toxins*SPECIFIC_HEAT_TOXIN)