Allow blacklist cleaning

This commit is contained in:
mittorn 2017-12-13 02:58:06 +07:00
parent 473eb94e96
commit 634e7e799c

View File

@ -99,6 +99,17 @@ void Ent_AddToBlacklist_f( void )
entblacklist = node;
}
void Ent_ClearBlacklist_f( void )
{
while( entblacklist )
{
entblacklist_t *node = entblacklist;
entblacklist = node->next;
free( node );
}
}
bool Ent_CheckFire( edict_t *player, edict_t *ent, const char *command )
{
if( !mp_enttools_players.value && ENTINDEX( ent ) < gpGlobals->maxClients + 1 )
@ -962,4 +973,6 @@ void ENT_RegisterCVars( void )
CVAR_REGISTER( &mp_enttools_checkowner );
CVAR_REGISTER( &mp_enttools_players );
g_engfuncs.pfnAddServerCommand( "mp_enttools_addblacklist", Ent_AddToBlacklist_f );
g_engfuncs.pfnAddServerCommand( "mp_enttools_clearblacklist", Ent_ClearBlacklist_f );
}