From 06d2da374297eb98ab207d9be9947003ad45ea34 Mon Sep 17 00:00:00 2001 From: Blixibon Date: Mon, 17 Jan 2022 16:49:30 -0600 Subject: [PATCH] Added GetRealTimeSpeechComplete --- sp/src/game/server/ai_speech.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sp/src/game/server/ai_speech.h b/sp/src/game/server/ai_speech.h index 69406fa5..72c704b8 100644 --- a/sp/src/game/server/ai_speech.h +++ b/sp/src/game/server/ai_speech.h @@ -184,6 +184,10 @@ public: bool CanSpeakAfterMyself(); float GetTimeSpeechComplete() const { return m_flStopTalkTime; } void BlockSpeechUntil( float time ); + +#ifdef EZ2 + float GetRealTimeSpeechComplete() const { return m_flStopTalkTimeWithoutDelay; } +#endif // --------------------------------