mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-01 05:00:46 +00:00
Should boost q3 server stability slightly, by not sending so many gibberish wrong-protocol packets.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3348 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
2c0a7508b0
commit
1718aae24b
1 changed files with 6 additions and 1 deletions
|
@ -1558,8 +1558,13 @@ void SV_SendServerInfoChange(char *key, const char *value)
|
||||||
{
|
{
|
||||||
if (!sv.state)
|
if (!sv.state)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
#ifdef Q2SERVER
|
#ifdef Q2SERVER
|
||||||
if (ge)
|
if (svs.gametype == GT_QUAKE2)
|
||||||
|
return; //FIXME!!!
|
||||||
|
#endif
|
||||||
|
#ifdef Q3SERVER
|
||||||
|
if (svs.gametype == GT_QUAKE3)
|
||||||
return; //FIXME!!!
|
return; //FIXME!!!
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue