engine: fix client can use kill command while not connected (#492)

This commit is contained in:
Barış 2021-06-12 18:19:23 +03:00 committed by GitHub
parent 9b1fccd1fa
commit 18d8ef287d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -1893,6 +1893,12 @@ static qboolean SV_Kill_f( sv_client_t *cl )
{
if( !SV_IsValidEdict( cl->edict ))
return true;
if( cl->state != cs_spawned )
{
SV_ClientPrintf( cl, "Can't suicide - not connected!\n" );
return true;
}
if( cl->edict->v.health <= 0.0f )
{