diff --git a/engine/client/cl_custom.c b/engine/client/cl_custom.c index fb77e698..03912768 100644 --- a/engine/client/cl_custom.c +++ b/engine/client/cl_custom.c @@ -50,7 +50,7 @@ qboolean CL_CheckFile( sizebuf_t *msg, resource_t *pResource ) if( !cl_allow_download.value ) { - Con_Reportf( "Download refused, cl_allow_download is 0\n" ); + Con_Reportf( "Download refused, cl_allowdownload is 0\n" ); return true; } diff --git a/engine/client/cl_parse.c b/engine/client/cl_parse.c index 46317ad3..59311864 100644 --- a/engine/client/cl_parse.c +++ b/engine/client/cl_parse.c @@ -698,7 +698,7 @@ void CL_ParseCustomization( sizebuf_t *msg ) if( !cl_allow_download.value ) { - Con_DPrintf( "Refusing new resource, cl_allow_download set to 0\n" ); + Con_DPrintf( "Refusing new resource, cl_allowdownload set to 0\n" ); Mem_Free( pRes ); return; } diff --git a/engine/client/cl_parse_48.c b/engine/client/cl_parse_48.c index 41042f87..9a33cf94 100644 --- a/engine/client/cl_parse_48.c +++ b/engine/client/cl_parse_48.c @@ -264,7 +264,7 @@ static void CL_LegacyParseResourceList( sizebuf_t *msg ) if( !cl_allow_download.value ) { - Con_DPrintf( "Refusing new resource, cl_allow_download set to 0\n" ); + Con_DPrintf( "Refusing new resource, cl_allowdownload set to 0\n" ); reslist.rescount = 0; }