From 97883f63c2f9f994b66fef445641d0682f8039ef Mon Sep 17 00:00:00 2001 From: Albert Iordache Date: Sat, 4 Feb 2012 11:38:26 +0200 Subject: [PATCH] Fix for an atmos runtime error. --- 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 9e2c7f38122..8189919da78 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/item in active_singletons) - item:process_cell() + for(var/turf/simulated/T in active_singletons) + T.process_cell() process_super_conductivity() for(var/turf/simulated/hot_potato in active_super_conductivity)