From 47ec6a7021e71e08cb45cf217cc6bd38a7033f4f Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Mon, 13 Feb 2012 01:01:33 -0500 Subject: [PATCH] re-renable things, now that things aren't exploding --- code/FEA/FEA_system.dm | 5 +++-- code/game/events/EventsMain.dm | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/code/FEA/FEA_system.dm b/code/FEA/FEA_system.dm index 576bed173e..fd723068d1 100644 --- a/code/FEA/FEA_system.dm +++ b/code/FEA/FEA_system.dm @@ -329,8 +329,9 @@ datum AG.process_group() process_singletons() - //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 + for(var/item in active_singletons) + if(!istype(item, /turf/space)) + item:process_cell() process_super_conductivity() for(var/turf/simulated/hot_potato in active_super_conductivity) diff --git a/code/game/events/EventsMain.dm b/code/game/events/EventsMain.dm index e8b769d6a9..64ec941423 100644 --- a/code/game/events/EventsMain.dm +++ b/code/game/events/EventsMain.dm @@ -6,7 +6,7 @@ */ -var/list/DisallowedEvents = list(/datum/event/spaceninja, /datum/event/prisonbreak, /datum/event/immovablerod, /datum/event/gravitationalanomaly, /datum/event/alieninfestation, /datum/event/meteorstorm) +var/list/DisallowedEvents = list(/datum/event/spaceninja, /datum/event/prisonbreak, /datum/event/immovablerod, /datum/event/gravitationalanomaly, /datum/event/alieninfestation) var/list/EventTypes = typesof(/datum/event) - /datum/event - DisallowedEvents var/list/OneTimeEvents = list(/datum/event/spacecarp, /datum/event/miniblob) var/datum/event/ActiveEvent = null