Fixed amb1657 - Server should see admin version of sm_who

--HG--
branch : sourcemod-1.0.x
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/branches/sourcemod-1.0.x%402147
This commit is contained in:
Matt Woodrow 2008-05-14 22:40:20 +00:00
parent 4a98a25b75
commit abf0a4f508

View File

@ -166,7 +166,7 @@ public Action:Command_Who(client, args)
{ {
new bool:is_admin = false; new bool:is_admin = false;
if (client && GetUserFlagBits(client) != 0) if (!client || (client && GetUserFlagBits(client) != 0))
{ {
is_admin = true; is_admin = true;
} }