mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-12 18:51:53 +00:00
* Remove /datum/game_mode, we SSdynamic now [again] * Modular * OLD CODE + repath --------- Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
9 lines
280 B
Plaintext
9 lines
280 B
Plaintext
/// Log to dynamic and message admins
|
|
/datum/controller/subsystem/dynamic/proc/log_dynamic_and_announce(text)
|
|
message_admins("DYNAMIC: [text]")
|
|
log_dynamic("[text]")
|
|
|
|
/// Logging for dynamic procs
|
|
/proc/log_dynamic(text, list/data)
|
|
logger.Log(LOG_CATEGORY_DYNAMIC, text, data)
|