search paths were not getting re-ordered after reconnects

This commit is contained in:
myT 2018-01-25 21:07:58 +01:00
parent f9cfe48d11
commit c4135557ad
1 changed files with 1 additions and 1 deletions

View File

@ -3089,7 +3089,7 @@ restart if necessary
void FS_ConditionalRestart( int checksumFeed ) { void FS_ConditionalRestart( int checksumFeed ) {
if( fs_gamedirvar->modified || checksumFeed != fs_checksumFeed ) { if( fs_gamedirvar->modified || checksumFeed != fs_checksumFeed ) {
FS_Restart( checksumFeed ); FS_Restart( checksumFeed );
} else if ( fs_numServerPaks && !fs_reordered ) { } else if ( fs_numServerPaks ) {
FS_ReorderPurePaks(); FS_ReorderPurePaks();
} }
} }