From 3550986680ae18a6cd8c499f21e9da95cb0a2fb6 Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Mon, 8 Jun 2015 14:42:19 +0200 Subject: when not restarting the filesystem, at least clear the pak references this appears to fix some cases of unpure client errors TODO: figure out the details of why --- src/client/cl_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/client/cl_main.c b/src/client/cl_main.c index 5d91da92..543c9b4f 100644 --- a/src/client/cl_main.c +++ b/src/client/cl_main.c @@ -2038,6 +2038,8 @@ void CL_DownloadsComplete( void ) { // by sending the donedl command we request a new gamestate // so we don't want to load stuff yet return; + } else { + FS_ClearPakReferences(0); } // let the client game init and load data -- cgit