From dcaa8289a10075ca098d8ebe2407939ebc3a0f1c Mon Sep 17 00:00:00 2001 From: Null Snapshot Date: Thu, 9 Jul 2015 12:26:11 -0700 Subject: [PATCH] Fix for missed if(A | B) else if (b) check. --- code/game/verbs/who.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm index 69b31733c07..e5655caaeab 100644 --- a/code/game/verbs/who.dm +++ b/code/game/verbs/who.dm @@ -76,7 +76,7 @@ msg += "\n" num_admins_online++ - else if(R_MOD & C.holder.rights || R_MENTOR & C.holder.rights) //Who shows up in mod/mentor rows. + else if(R_MOD & C.holder.rights) //Who shows up in mod/mentor rows. modmsg += "\t[C] is a [C.holder.rank]" if(isobserver(C.mob)) @@ -111,7 +111,7 @@ if(!C.holder.fakekey) msg += "\t[C] is a [C.holder.rank]\n" num_admins_online++ - else if (R_MOD & C.holder.rights || R_MENTOR & C.holder.rights) + else if (R_MOD & C.holder.rights) modmsg += "\t[C] is a [C.holder.rank]\n" num_mods_online++ else if (R_MENTOR & C.holder.rights)