Files
Aurora.3/code/controllers/subsystems/evac.dm
Matt Atlas baeb7c6afd Updates subsystem definitions to new standards. (#17470)
* 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>
2023-10-01 14:24:40 +00:00

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()