mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-16 20:32:14 +00:00
* 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
17 lines
423 B
Plaintext
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()
|