mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-26 02:02:39 +00:00
* hell yeah-coded * welp im too tired to fix this one * lets test this * Revert "lets test this" * okay, lets test! * fixes * okay we good? * i might be stupid
34 lines
763 B
Plaintext
34 lines
763 B
Plaintext
/datum/controller
|
|
var/name
|
|
|
|
/datum/controller/proc/Initialize()
|
|
return
|
|
|
|
//cleanup actions
|
|
/datum/controller/proc/Shutdown()
|
|
return
|
|
|
|
//when we enter dmm_suite.load_map
|
|
/datum/controller/proc/StartLoadingMap()
|
|
return
|
|
|
|
//when we exit dmm_suite.load_map
|
|
/datum/controller/proc/StopLoadingMap()
|
|
return
|
|
|
|
/datum/controller/proc/Recover()
|
|
return
|
|
|
|
/datum/controller/proc/stat_entry(msg)
|
|
SHOULD_CALL_PARENT(TRUE)
|
|
SHOULD_NOT_SLEEP(TRUE)
|
|
return msg
|
|
|
|
/**
|
|
* Standardized method for tracking startup times.
|
|
*/
|
|
/datum/controller/proc/log_startup_progress(message)
|
|
Master.last_init_info = "([name]): [message]"
|
|
to_chat(world, "<span class='danger'><small>\[[name]]</small> [message]</span>", MESSAGE_TYPE_DEBUG, confidential = TRUE)
|
|
log_world("\[[name]] [message]")
|