engine: fix client can use kill command while not connected (#492)
This commit is contained in:
parent
9b1fccd1fa
commit
18d8ef287d
1 changed files with 6 additions and 0 deletions
|
@ -1893,6 +1893,12 @@ static qboolean SV_Kill_f( sv_client_t *cl )
|
||||||
{
|
{
|
||||||
if( !SV_IsValidEdict( cl->edict ))
|
if( !SV_IsValidEdict( cl->edict ))
|
||||||
return true;
|
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 )
|
if( cl->edict->v.health <= 0.0f )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue