From c3cdb96b686edbd553c165e9efa59bf3aa59b9b9 Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Sun, 8 Nov 2015 01:16:06 -0800 Subject: [PATCH] Update _logging.dm --- code/__HELPERS/_logging.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm index 552cb9f95c3..861f1d3d5eb 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]"