From: Rudolf Polzer Date: Fri, 30 Apr 2010 17:22:38 +0000 (+0200) Subject: Fix a slight bug caused by the merging by replaying the cherry-picks correctly X-Git-Tag: xonotic-v0.1.0preview~540 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8d4defcb90cc5c9bc04756743535b634482cb0d6;p=xonotic%2Fdarkplaces.git Fix a slight bug caused by the merging by replaying the cherry-picks correctly ::stable-branch::rebase=c4dbfc4fbf19b5199c2014eaca78475f8d2afb02 --- diff --git a/sv_main.c b/sv_main.c index fb0be740..40d7e6dd 100644 --- a/sv_main.c +++ b/sv_main.c @@ -3090,7 +3090,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, developer.integer != 0, NULL); + worldmodel = Mod_ForName(modelname, false, developer.integer > 0, NULL); if (!worldmodel || !worldmodel->TraceBox) { Con_Printf("Couldn't load map %s\n", modelname);