fixed wrong think func calling

This commit is contained in:
jeefo 2015-07-22 23:49:22 +03:00
commit 1404301a3c

View file

@ -237,7 +237,7 @@ void BotManager::Think (void)
for (int i = 0; i < GetMaxClients (); i++) for (int i = 0; i < GetMaxClients (); i++)
{ {
if (m_bots[i] != NULL) if (m_bots[i] != NULL)
m_bots[i]->Think (); m_bots[i]->ThinkMain ();
} }
} }