partial mol#4 we see stats on map changes, but not the userinfos yet

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2654 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2007-09-10 19:07:56 +00:00
parent 75458007b7
commit 3555ba42ce
1 changed files with 6 additions and 0 deletions

View File

@ -284,6 +284,12 @@ void BuildServerData(sv_t *tv, netmsg_t *msg, int servercount, viewer_t *viewer)
WriteString2(msg, tv->serverinfo);
WriteString(msg, "\"\n");
}
if (viewer)
{
//the quakeworld client will have flushed most of the information that it knows about things
//this is as good a place to flush our cache as any other
memset(viewer->currentstats, 0, sizeof(viewer->currentstats));
}
}
void BuildNQServerData(sv_t *tv, netmsg_t *msg, qboolean mvd, int playernum)
{