NSTalkMonster: m_flFollowSpeedChanged should be 1.0 instead of 5.0 (as comment suggests)

This commit is contained in:
Marco Cawthorne 2024-03-06 19:12:05 -08:00
parent 0bb88774a2
commit bd2705eed6
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 1 additions and 1 deletions

View File

@ -597,7 +597,7 @@ NSTalkMonster::FollowPlayer(void)
/* only update the timer when speed changed */
if (flNextSpeed != m_flFollowSpeed) {
m_flFollowSpeed = flNextSpeed;
m_flFollowSpeedChanged = time + 5.0f;
m_flFollowSpeedChanged = time + 1.0f;
}
}