mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 18:22:14 +00:00
* wew * Update preferences.dm * Update logging.dm * Update preferences.dm * Update preferences.dm
12 lines
488 B
Plaintext
12 lines
488 B
Plaintext
//This logs subtler emotes in game.txt, if the conflig flag in config\skyrat\skyrat_config.txt is true.
|
|
/proc/log_subtler(text)
|
|
if (CONFIG_GET(flag/log_subtler))
|
|
WRITE_LOG(GLOB.world_game_log, "SUBTLER EMOTE: [text]")
|
|
|
|
GLOBAL_VAR(character_creation_log)
|
|
GLOBAL_PROTECT(character_creation_log)
|
|
|
|
//This logs subtler emotes in game.txt, if the conflig flag in config\skyrat\skyrat_config.txt is true.
|
|
/proc/log_creator(text)
|
|
WRITE_LOG(GLOB.character_creation_log, "CREATOR LOG: [text]")
|