Index: code/client/cl_main.c =================================================================== --- code/client/cl_main.c (revision 1881) +++ code/client/cl_main.c (working copy) @@ -910,7 +910,7 @@ char demoExt[ 16 ]; Com_sprintf( demoExt, sizeof( demoExt ), ".dm_%d", PROTOCOL_VERSION ); - Field_CompleteFilename( "demos", demoExt, qtrue ); + Field_CompleteFilename( "demos", demoExt, qtrue, qfalse ); } } Index: code/client/cl_console.c =================================================================== --- code/client/cl_console.c (revision 1881) +++ code/client/cl_console.c (working copy) @@ -309,7 +309,7 @@ */ void Cmd_CompleteTxtName( char *args, int argNum ) { if( argNum == 2 ) { - Field_CompleteFilename( "", "txt", qfalse ); + Field_CompleteFilename( "", "txt", qfalse, qtrue ); } } Index: code/server/sv_ccmds.c =================================================================== --- code/server/sv_ccmds.c (revision 1881) +++ code/server/sv_ccmds.c (working copy) @@ -1253,7 +1253,7 @@ */ static void SV_CompleteMapName( char *args, int argNum ) { if( argNum == 2 ) { - Field_CompleteFilename( "maps", "bsp", qtrue ); + Field_CompleteFilename( "maps", "bsp", qtrue, qfalse ); } } Index: code/qcommon/cmd.c =================================================================== --- code/qcommon/cmd.c (revision 1881) +++ code/qcommon/cmd.c (working copy) @@ -784,7 +784,7 @@ */ void Cmd_CompleteCfgName( char *args, int argNum ) { if( argNum == 2 ) { - Field_CompleteFilename( "", "cfg", qfalse ); + Field_CompleteFilename( "", "cfg", qfalse, qtrue ); } } Index: code/qcommon/qcommon.h =================================================================== --- code/qcommon/qcommon.h (revision 1881) +++ code/qcommon/qcommon.h (working copy) @@ -715,7 +715,7 @@ void FS_HomeRemove( const char *homePath ); void FS_FilenameCompletion( const char *dir, const char *ext, - qboolean stripExt, void(*callback)(const char *s) ); + qboolean stripExt, void(*callback)(const char *s), qboolean allowNonPureFilesOnDisk ); const char *FS_GetCurrentGameDir(void); @@ -739,7 +739,7 @@ void Field_AutoComplete( field_t *edit ); void Field_CompleteKeyname( void ); void Field_CompleteFilename( const char *dir, - const char *ext, qboolean stripExt ); + const char *ext, qboolean stripExt, qboolean allowNonPureFilesOnDisk ); void Field_CompleteCommand( char *cmd, qboolean doCommands, qboolean doCvars ); Index: code/qcommon/common.c =================================================================== --- code/qcommon/common.c (revision 1881) +++ code/qcommon/common.c (working copy) @@ -3303,15 +3303,15 @@ =============== */ void Field_CompleteFilename( const char *dir, - const char *ext, qboolean stripExt ) + const char *ext, qboolean stripExt, qboolean allowNonPureFilesOnDisk ) { matchCount = 0; shortestMatch[ 0 ] = 0; - FS_FilenameCompletion( dir, ext, stripExt, FindMatches ); + FS_FilenameCompletion( dir, ext, stripExt, FindMatches, allowNonPureFilesOnDisk ); if( !Field_Complete( ) ) - FS_FilenameCompletion( dir, ext, stripExt, PrintMatches ); + FS_FilenameCompletion( dir, ext, stripExt, PrintMatches, allowNonPureFilesOnDisk ); } /* Index: code/qcommon/files.c =================================================================== --- code/qcommon/files.c (revision 1881) +++ code/qcommon/files.c (working copy) @@ -1921,7 +1921,7 @@ from all search paths =============== */ -char **FS_ListFilteredFiles( const char *path, const char *extension, char *filter, int *numfiles ) { +char **FS_ListFilteredFiles( const char *path, const char *extension, char *filter, int *numfiles, qboolean allowNonPureFilesOnDisk ) { int nfiles; char **listCopy; char *list[MAX_FOUND_FILES]; @@ -2017,7 +2017,7 @@ char *name; // don't scan directories for files if we are pure or restricted - if ( fs_numServerPaks ) { + if ( fs_numServerPaks && !allowNonPureFilesOnDisk ) { continue; } else { netpath = FS_BuildOSPath( search->dir->path, search->dir->gamedir, path ); @@ -2054,7 +2054,7 @@ ================= */ char **FS_ListFiles( const char *path, const char *extension, int *numfiles ) { - return FS_ListFilteredFiles( path, extension, NULL, numfiles ); + return FS_ListFilteredFiles( path, extension, NULL, numfiles, qfalse ); } /* @@ -2433,7 +2433,7 @@ Com_Printf( "---------------\n" ); - dirnames = FS_ListFilteredFiles( "", "", filter, &ndirs ); + dirnames = FS_ListFilteredFiles( "", "", filter, &ndirs, qfalse ); FS_SortFileList(dirnames, ndirs); @@ -3665,13 +3665,13 @@ } void FS_FilenameCompletion( const char *dir, const char *ext, - qboolean stripExt, void(*callback)(const char *s) ) { + qboolean stripExt, void(*callback)(const char *s), qboolean allowNonPureFilesOnDisk ) { char **filenames; int nfiles; int i; char filename[ MAX_STRING_CHARS ]; - filenames = FS_ListFilteredFiles( dir, ext, NULL, &nfiles ); + filenames = FS_ListFilteredFiles( dir, ext, NULL, &nfiles, allowNonPureFilesOnDisk ); FS_SortFileList( filenames, nfiles );