mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 08:31:57 +00:00
* Debug code to figure out why timer fire isn't yielding * please man * thing 2 * BALLS * BALLS 2 * correction * remove debug shitcode Co-authored-by: Matt Atlas <liermattia@gmail.com>
18 lines
458 B
Plaintext
18 lines
458 B
Plaintext
var/datum/controller/subsystem/evac/SSevac
|
|
|
|
/datum/controller/subsystem/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()
|
|
|