Added amb30 - csstats_rankbots will stop bots from showing in /top15

This commit is contained in:
Steve Dudenhoeffer
2007-06-21 19:37:58 +00:00
parent 6c0300801f
commit 7c4dccac8c
2 changed files with 10 additions and 3 deletions

View File

@ -67,13 +67,19 @@ void CPlayer::Disconnect(){
if ( ignoreBots(pEdict) || !isModuleActive() ) // ignore if he is bot and bots rank is disabled or module is paused
return;
rank->updatePosition( &life );
if (rank != 0) // Just a sanity check, FL_FAKECLIENT is notoriously unreliable.
{
rank->updatePosition( &life );
}
rank = 0;
}
void CPlayer::PutInServer(){
if ( ignoreBots(pEdict) )
//if ( ignoreBots(pEdict) )
if ( (int)csstats_rankbots->value == 0 &&
IsBot() )
return;
restartStats();