made lower difficulty bots a bit easier

This commit is contained in:
jeefo 2015-07-31 20:32:08 +03:00
commit 4256d15bf1
5 changed files with 121 additions and 23 deletions

View file

@ -1081,6 +1081,7 @@ void Bot::NewRound (void)
m_reloadCheckTime = 0.0;
m_shootTime = GetWorldTime ();
m_playerTargetTime = GetWorldTime ();
m_firePause = 0.0;
m_timeLastFired = 0.0;
@ -1159,10 +1160,6 @@ void Bot::NewRound (void)
ChatterMessage (Chatter_NewRound);
m_thinkInterval = (1.0f / 30.0f) * Random.Float (0.95f, 1.05f);
// fixes bot looking at weird positions during buytime with think fps
m_aimFlags |= AIM_NAVPOINT;
ChooseAimDirection ();
}
void Bot::Kill (void)