From 46c6145cf7eeba0e37aeb29842f84981b613f49b Mon Sep 17 00:00:00 2001 From: DJSnapshot Date: Fri, 10 Jan 2014 13:39:40 -0800 Subject: [PATCH] Made it so asay is not the same color as adminlogs. --- code/modules/admin/verbs/adminsay.dm | 2 +- code/stylesheet.dm | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/adminsay.dm b/code/modules/admin/verbs/adminsay.dm index 3d9ab9dffe..086baa5877 100644 --- a/code/modules/admin/verbs/adminsay.dm +++ b/code/modules/admin/verbs/adminsay.dm @@ -10,7 +10,7 @@ log_admin("[key_name(src)] : [msg]") if(check_rights(R_ADMIN,0)) - msg = "ADMIN: [key_name(usr, 1)] (JMP): [msg]" + msg = "ADMIN: [key_name(usr, 1)] (JMP): [msg]" for(var/client/C in admins) if(R_ADMIN & C.holder.rights) C << msg diff --git a/code/stylesheet.dm b/code/stylesheet.dm index fda3fb64e2..946013dfcb 100644 --- a/code/stylesheet.dm +++ b/code/stylesheet.dm @@ -19,6 +19,7 @@ em {font-style: normal; font-weight: bold;} .adminobserver {color: #996600; font-weight: bold;} .admin {color: #386aff; font-weight: bold;} +.adminsay {color: #9611D4; font-weight: bold;} .name { font-weight: bold;}