From adde8bb5bfb9c7c1d5d0c5334596abcfd87fd6b1 Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 17 Mar 2017 03:15:20 +0000 Subject: [PATCH] Removes 'Moderator' from Adminwho Literally unplayable --- code/game/verbs/who.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm index 4e822710cd0..dd8123b2876 100644 --- a/code/game/verbs/who.dm +++ b/code/game/verbs/who.dm @@ -77,9 +77,9 @@ for(var/client/C in admins) if(check_rights(R_ADMIN, 0, C.mob)) - if(C.holder.fakekey && !check_rights(R_ADMIN, 0)) //Mentors/Mods can't see stealthmins + if(C.holder.fakekey && !check_rights(R_ADMIN, 0)) //Mentors can't see stealthmins continue - + if(C.holder.big_brother && !check_rights(R_PERMISSIONS, 0)) // normal admins can't see BB continue @@ -126,5 +126,5 @@ modmsg += "\t[C] is a [C.holder.rank]\n" num_mods_online++ - msg = "Current Admins ([num_admins_online]):\n" + msg + "\nCurrent Mods/Mentors ([num_mods_online]):\n" + modmsg + msg = "Current Admins ([num_admins_online]):\n" + msg + "\nCurrent Mentors ([num_mods_online]):\n" + modmsg to_chat(src, msg)