Files
Bubberstation/code/__HELPERS/~skyrat_helpers/logging.dm
Zonespace c4a2db206c Replaces some borer progression with an upgrade tree (#16704)
* borer wormening

* time to go

* synthetic boring

* lc-chest

* cleans unneeded logic

* warn against only 1 T3+

* _
2022-10-08 19:56:21 -04:00

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