mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-30 20:13:08 +00:00
* My heart is dragging me down into... ...oblivion! * drifting closer to the edge but she won't have me * ever round me we are dead before we meet her * for the last time * wake up in sweat * n * fff * uff --------- Co-authored-by: Matt Atlas <liermattia@gmail.com>
16 lines
400 B
Plaintext
16 lines
400 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 current_map.evac_controller_type ()
|
|
evacuation_controller.set_up()
|
|
|
|
/datum/controller/subsystem/evac/fire()
|
|
evacuation_controller.process()
|