From: havoc Date: Thu, 25 Feb 2010 16:09:49 +0000 (+0000) Subject: don't bother checking if bsp file has been modified on a level change if X-Git-Tag: xonotic-v0.1.0preview~230^2~468 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=db08fdf387c8b8f1bd089893962ce66dd2804200;p=xonotic%2Fdarkplaces.git don't bother checking if bsp file has been modified on a level change if developer is 0 git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10001 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/sv_main.c b/sv_main.c index 86436e03..b66d7167 100644 --- a/sv_main.c +++ b/sv_main.c @@ -3003,7 +3003,7 @@ void SV_SpawnServer (const char *server) // free q3 shaders so that any newly downloaded shaders will be active Mod_FreeQ3Shaders(); - worldmodel = Mod_ForName(modelname, false, true, NULL); + worldmodel = Mod_ForName(modelname, false, developer.integer != 0, NULL); if (!worldmodel || !worldmodel->TraceBox) { Con_Printf("Couldn't load map %s\n", modelname);