mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-15 04:01:41 +00:00
* Sets up ambition logging baseline framework * That's one line, how did I write it * Have to rewrite all the logs! * I don't know what I'm doing anymore * I think this is the last thing * Log ambition is now added to config * Ambition flag now correctly checks for the ambition flag * Okay /here/ we go * No more lowercase ckeys in admin chat * Admin actions are now logged too
10 lines
336 B
Plaintext
10 lines
336 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]")
|
|
|
|
/proc/log_ambition(text)
|
|
if(CONFIG_GET(flag/log_ambition))
|
|
WRITE_LOG(GLOB.world_game_log, "AMBITION: [text]")
|