Fix for missed if(A | B) else if (b) check.

This commit is contained in:
Null Snapshot
2015-07-09 12:26:11 -07:00
parent 55ef56e36e
commit dcaa8289a1

View File

@@ -76,7 +76,7 @@
msg += "\n" msg += "\n"
num_admins_online++ 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]" modmsg += "\t[C] is a [C.holder.rank]"
if(isobserver(C.mob)) if(isobserver(C.mob))
@@ -111,7 +111,7 @@
if(!C.holder.fakekey) if(!C.holder.fakekey)
msg += "\t[C] is a [C.holder.rank]\n" msg += "\t[C] is a [C.holder.rank]\n"
num_admins_online++ 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" modmsg += "\t[C] is a [C.holder.rank]\n"
num_mods_online++ num_mods_online++
else if (R_MENTOR & C.holder.rights) else if (R_MENTOR & C.holder.rights)