engine: client: added Host_Error for CL_EDICT_NUM (hotfix for issue #434)

This commit is contained in:
SNMetamorph 2021-06-05 15:36:44 +04:00 committed by Alibek Omarov #SupportRMS
parent 37c5dfa49f
commit f7f069a38b
1 changed files with 6 additions and 0 deletions

View File

@ -844,6 +844,12 @@ movevars_t *pfnGetMoveVars( void );
_inline cl_entity_t *CL_EDICT_NUM( int n )
{
if( !clgame.entities )
{
Host_Error( "CL_EDICT_NUM: clgame.entities is NULL\n");
return NULL;
}
if(( n >= 0 ) && ( n < clgame.maxEntities ))
return clgame.entities + n;