From 90eb32c5ab01c7ee4815fd33c76fca788ff4214f Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sat, 8 Feb 2014 21:25:44 -0600 Subject: [PATCH] Clear referenced paks when disconnecting After playing Team Arena, if you switch to Q3A and try to play a demo with cl_allowDownload enabled it would print "Need Paks: blah blah" and not play the demo. --- code/client/cl_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/code/client/cl_main.c b/code/client/cl_main.c index 7877a886..2fa38af8 100644 --- a/code/client/cl_main.c +++ b/code/client/cl_main.c @@ -1457,6 +1457,7 @@ void CL_Disconnect( qboolean showMainMenu ) { // Remove pure paks FS_PureServerSetLoadedPaks("", ""); + FS_PureServerSetReferencedPaks( "", "" ); CL_ClearState ();