fixed auth string being returned as true if not available

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40455
This commit is contained in:
David Anderson 2007-02-07 19:30:53 +00:00
parent 03fd3139c5
commit 4ad7f36207

View File

@ -98,7 +98,13 @@ static cell_t sm_GetClientAuthStr(IPluginContext *pCtx, const cell_t *params)
return pCtx->ThrowNativeError("Client %d is not connected.", index);
}
if (!pPlayer->IsAuthorized())
{
return 0;
}
pCtx->StringToLocal(params[2], static_cast<size_t>(params[3]), pPlayer->GetAuthString());
return 1;
}