From f0a75407b88e539f213e3fb974c193390e175f38 Mon Sep 17 00:00:00 2001 From: Ccomp5950 Date: Tue, 3 Jun 2014 15:28:14 -0500 Subject: [PATCH] Rights check instead of holder check? Sure why not. Mentors can now see ahelps. --- code/modules/admin/verbs/adminhelp.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 56456775c3..63b9db599b 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -96,7 +96,7 @@ var/list/adminhelp_ignored_words = list("unknown","the","a","an","of","monkey"," //send this msg to all admins var/admin_number_afk = 0 for(var/client/X in admins) - if((R_ADMIN|R_MOD) & X.holder.rights) + if((R_ADMIN|R_MOD|R_MENTOR) & X.holder.rights) if(X.is_afk()) admin_number_afk++ if(X.prefs.toggles & SOUND_ADMINHELP)