From 45191b97f82c948e0ea413f8e605c0e683ce615d Mon Sep 17 00:00:00 2001 From: Blixibon Date: Mon, 17 Jan 2022 19:11:23 -0600 Subject: [PATCH] Fixed incorrect ifdef preprocessor --- sp/src/game/server/ai_speech.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sp/src/game/server/ai_speech.h b/sp/src/game/server/ai_speech.h index 72c704b8..a0a82318 100644 --- a/sp/src/game/server/ai_speech.h +++ b/sp/src/game/server/ai_speech.h @@ -185,7 +185,7 @@ public: float GetTimeSpeechComplete() const { return m_flStopTalkTime; } void BlockSpeechUntil( float time ); -#ifdef EZ2 +#ifdef MAPBASE float GetRealTimeSpeechComplete() const { return m_flStopTalkTimeWithoutDelay; } #endif