From bd2705eed6abad476153611504ee5aca9a966a85 Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Wed, 6 Mar 2024 19:12:05 -0800 Subject: [PATCH] NSTalkMonster: m_flFollowSpeedChanged should be 1.0 instead of 5.0 (as comment suggests) --- src/shared/NSTalkMonster.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/NSTalkMonster.qc b/src/shared/NSTalkMonster.qc index 0e6f1947..ca753764 100644 --- a/src/shared/NSTalkMonster.qc +++ b/src/shared/NSTalkMonster.qc @@ -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; } }