From 9a939547c05daba34e64299324ee7e54a71fd99c Mon Sep 17 00:00:00 2001 From: Blixibon Date: Tue, 26 Jul 2022 12:54:01 -0500 Subject: [PATCH] Fixed rare activity translation recursion case --- sp/src/game/server/ai_basenpc.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sp/src/game/server/ai_basenpc.cpp b/sp/src/game/server/ai_basenpc.cpp index 6f8b7bcd..c503a09c 100644 --- a/sp/src/game/server/ai_basenpc.cpp +++ b/sp/src/game/server/ai_basenpc.cpp @@ -2598,11 +2598,7 @@ bool CAI_BaseNPC::FValidateHintType ( CAI_Hint *pHint ) Activity CAI_BaseNPC::GetHintActivity( short sHintType, Activity HintsActivity ) { if ( HintsActivity != ACT_INVALID ) -#ifdef MAPBASE - return TranslateActivity( HintsActivity ); // Always translate the activity -#else return HintsActivity; -#endif return ACT_IDLE; }