diff --git a/engine/client/cl_game.c b/engine/client/cl_game.c index f67f56552..c08cb0c49 100644 --- a/engine/client/cl_game.c +++ b/engine/client/cl_game.c @@ -2408,9 +2408,8 @@ CL_FindModelIndex */ static int GAME_EXPORT CL_FindModelIndex( const char *m ) { - char filepath[MAX_QPATH]; - static float lasttimewarn; - int i; + char filepath[MAX_QPATH]; + int i; if( !COM_CheckString( m )) return 0; @@ -2427,13 +2426,6 @@ static int GAME_EXPORT CL_FindModelIndex( const char *m ) return i+1; } - if( lasttimewarn < host.realtime ) - { - // tell user about problem (but don't spam console) - Con_DPrintf( S_ERROR "Could not find index for model %s: not precached\n", filepath ); - lasttimewarn = host.realtime + 1.0f; - } - return 0; }