From c4135557add6ef6f22f1e320066a537df578c038 Mon Sep 17 00:00:00 2001 From: myT Date: Thu, 25 Jan 2018 21:07:58 +0100 Subject: [PATCH] search paths were not getting re-ordered after reconnects --- code/qcommon/files.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/files.cpp b/code/qcommon/files.cpp index e8076b6..37e3ac3 100644 --- a/code/qcommon/files.cpp +++ b/code/qcommon/files.cpp @@ -3089,7 +3089,7 @@ restart if necessary void FS_ConditionalRestart( int checksumFeed ) { if( fs_gamedirvar->modified || checksumFeed != fs_checksumFeed ) { FS_Restart( checksumFeed ); - } else if ( fs_numServerPaks && !fs_reordered ) { + } else if ( fs_numServerPaks ) { FS_ReorderPurePaks(); } }