From 35ae4bd5f392925cf5d692063e7a171e72ec2879 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Sun, 5 Feb 2012 01:07:57 -0500 Subject: [PATCH] turns out things broke from abi's runtime fix because that proc shouldn't ever be called here --- code/FEA/FEA_system.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/FEA/FEA_system.dm b/code/FEA/FEA_system.dm index 8189919da78..576bed173ee 100644 --- a/code/FEA/FEA_system.dm +++ b/code/FEA/FEA_system.dm @@ -329,8 +329,8 @@ datum AG.process_group() process_singletons() - for(var/turf/simulated/T in active_singletons) - T.process_cell() + //for(var/turf/simulated/T in active_singletons) // this code shouldn't actually exist in the current version of FEA apparently, + // T.process_cell() // causes horrible gas variable glitching process_super_conductivity() for(var/turf/simulated/hot_potato in active_super_conductivity)