Files
Fluffy e867030c2e Update MC (#18112)
* sdf

* fsda

* fuck

* fuck2

* toolz

* sdaf

* sdfa

* saf

* sdfa

* sdfa

* sdf

* sdfa

* temp rename

* temp rename

* temp rename

* sdaf

* the pain is immensurable in the land of byond

* the curse of rah

* safd

* sadf

* sadf

* gf

* asf

* fssdfa

* sfd

* sadf

* sfda

* brah

* brah

* it's easier for you to fix this

* ffs

* brah

* brah
2024-01-06 17:03:57 +01:00

17 lines
635 B
Plaintext

/// Logging for PDA messages sent
/proc/log_pda(text)
if (GLOB.config.logsettings["log_pda"])
WRITE_LOG(GLOB.config.logfiles["world_pda_log"], "PDA: [text]")
/// Logging for newscaster comments
/proc/log_comment(text)
//reusing the PDA option because I really don't think news comments are worth a config option
if (GLOB.config.logsettings["log_pda"])
WRITE_LOG(GLOB.config.logfiles["world_pda_log"], "COMMENT: [text]")
/// Logging for chatting on modular computer channels
/proc/log_chat(text)
//same thing here
if (GLOB.config.logsettings["log_pda"])
WRITE_LOG(GLOB.config.logfiles["world_pda_log"], "PDA CHAT: [text]")