mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Allow lumas if the server doesn't care.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3329 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
e14edce4fd
commit
ad07e50ee8
1 changed files with 2 additions and 1 deletions
|
@ -1409,7 +1409,8 @@ void CL_CheckServerInfo(void)
|
|||
if (cl.spectator || cls.demoplayback || atoi(Info_ValueForKey(cl.serverinfo, "mirrors")))
|
||||
cls.allow_mirrors=true;
|
||||
|
||||
if (cl.spectator || cls.demoplayback || atoi(Info_ValueForKey(cl.serverinfo, "allow_luma")))
|
||||
s = Info_ValueForKey(cl.serverinfo, "allow_luma");
|
||||
if (cl.spectator || cls.demoplayback || !*s || atoi(s))
|
||||
cls.allow_luma=true;
|
||||
|
||||
if (cl.spectator || cls.demoplayback || atoi(Info_ValueForKey(cl.serverinfo, "allow_lmgamma")))
|
||||
|
|
Loading…
Reference in a new issue