Files
Bubberstation/code/__HELPERS/~skyrat_helpers/logging.dm
Gandalf ba7c15aee2 More fixes (#12702)
* wew

* Update preferences.dm

* Update logging.dm

* Update preferences.dm

* Update preferences.dm
2022-04-19 23:48:56 +01:00

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]")