mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +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;
|
havepak = qfalse;
|
||||||
|
|
||||||
// never autodownload any of the id paks
|
// 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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue