correct version string

report valid number of remaining enemies in chatter
increased periodic think interval
This commit is contained in:
jeefo 2015-07-25 16:51:48 +03:00
commit 6502c44050
3 changed files with 8 additions and 5 deletions

View file

@ -220,7 +220,7 @@ Bot *BotManager::FindOneValidAliveBot (void)
for (int i = 0; i < GetMaxClients (); i++)
{
if (m_bots[i] != NULL && IsAlive (m_bots[i]->GetEntity ()))
if (m_bots[i] != NULL && IsAlive (m_bots[i]->GetEntity ()) && foundBots.GetSize () < 5)
foundBots.Push (i);
}