diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm index 46839789f5e..a23204ac5d8 100644 --- a/code/__HELPERS/_logging.dm +++ b/code/__HELPERS/_logging.dm @@ -19,9 +19,13 @@ if (config.log_admin) diary << "\[[time_stamp()]]ADMIN: [text]" +/proc/log_adminsay(text) + if (config.log_adminchat) + log_admin("ASAY: [text]") + /proc/log_dsay(text) if (config.log_adminchat) - diary << "\[[time_stamp()]]DSAY: [text]" + log_admin("DSAY: [text]") /proc/log_game(text) if (config.log_game) @@ -63,10 +67,6 @@ if (config.log_attack) diaryofmeanpeople << "\[[time_stamp()]]ATTACK: [text]" -/proc/log_adminsay(text) - if (config.log_adminchat) - diary << "\[[time_stamp()]]ASAY: [text]" - /proc/log_pda(text) if (config.log_pda) diary << "\[[time_stamp()]]PDA: [text]"