Files
Aurora.3/code/controllers/subsystems/evac.dm
Fluffy 25dc248979 Updated statpanel and added client pings (#18337)
* SSatlas.current_map

* hardsuit spell tab appears to clear correctly

* sdfsa

* from the moment i understood the weakness of my flesh, it disgusted me

* sdf
2024-02-08 12:29:42 +00:00

17 lines
423 B
Plaintext

SUBSYSTEM_DEF(evac)
name = "Evacuation"
priority = SS_PRIORITY_EVAC
//Initializes at default time
flags = SS_BACKGROUND
wait = 2 SECONDS
/datum/controller/subsystem/evac/Initialize()
if(!evacuation_controller)
evacuation_controller = new SSatlas.current_map.evac_controller_type ()
evacuation_controller.set_up()
return SS_INIT_SUCCESS
/datum/controller/subsystem/evac/fire()
evacuation_controller.process()