mirror of
https://github.com/UberGames/ioef.git
synced 2025-01-18 15:11:41 +00:00
need to hardcode "baseq3" to prevent download of id files even if compiled STANDALONE
This commit is contained in:
parent
3ebe048968
commit
a9fdf0ef3b
1 changed files with 2 additions and 1 deletions
|
@ -2621,7 +2621,8 @@ qboolean FS_ComparePaks( char *neededpaks, int len, qboolean dlstring ) {
|
|||
havepak = qfalse;
|
||||
|
||||
// never autodownload any of the id paks
|
||||
if ( FS_idPak(fs_serverReferencedPakNames[i], BASEGAME) || FS_idPak(fs_serverReferencedPakNames[i], "missionpack") ) {
|
||||
if ( FS_idPak(fs_serverReferencedPakNames[i], "baseq3")
|
||||
|| FS_idPak(fs_serverReferencedPakNames[i], "missionpack") ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue