Replaced various "baseq3" strings with the centrally defined BASEGAME macro.

This commit is contained in:
Thilo Schulz 2006-04-26 11:27:12 +00:00
parent 88b2b82b00
commit 70fca10af2
3 changed files with 7 additions and 7 deletions

View file

@ -768,7 +768,7 @@ void SV_WriteDownloadToClient( client_t *cl , msg_t *msg )
Com_Printf( "clientDownload: %d : begining \"%s\"\n", cl - svs.clients, cl->downloadName );
missionPack = FS_idPak(cl->downloadName, "missionpack");
idPack = missionPack || FS_idPak(cl->downloadName, "baseq3");
idPack = missionPack || FS_idPak(cl->downloadName, BASEGAME);
if ( !sv_allowDownload->integer || idPack ||
( cl->downloadSize = FS_SV_FOpenFileRead( cl->downloadName, &cl->download ) ) <= 0 ) {