mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-13 19:22:20 +00:00
* borer wormening * time to go * synthetic boring * lc-chest * cleans unneeded logic * warn against only 1 T3+ * _
17 lines
654 B
Plaintext
17 lines
654 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]")
|
|
|
|
/// Logging for borer evolutions
|
|
/proc/log_borer_evolution(text)
|
|
if (CONFIG_GET(flag/log_uplink))
|
|
WRITE_LOG(GLOB.world_uplink_log, "BORER EVOLUTION: [text]")
|