mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-13 05:51:19 +00:00
Allow blacklist cleaning
This commit is contained in:
parent
473eb94e96
commit
634e7e799c
@ -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 );
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user