From 64bd0abd71de14f2e500629b1d24a351b0c00667 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Thu, 26 Feb 2015 21:41:59 -0500 Subject: [PATCH] Fix mentors seeing MSAY --- code/modules/admin/verbs/adminsay.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/adminsay.dm b/code/modules/admin/verbs/adminsay.dm index da234e27680..209ce6b0b32 100644 --- a/code/modules/admin/verbs/adminsay.dm +++ b/code/modules/admin/verbs/adminsay.dm @@ -33,6 +33,7 @@ if(check_rights(R_ADMIN, 0)) spanclass = "mod_channel_admin" for(var/client/C in admins) - C << "MOD: [key_name(usr, 1)] (JMP): [msg]" + if(R_MOD & C.holder.rights) + C << "MOD: [key_name(usr, 1)] (JMP): [msg]" feedback_add_details("admin_verb","MS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! \ No newline at end of file