stop the server from requiring csqc without csqc.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1864 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
d6c9c70108
commit
e4096f4e70
2 changed files with 2 additions and 2 deletions
|
@ -745,7 +745,7 @@ void SV_FullClientUpdate (client_t *client, sizebuf_t *buf, unsigned int ftepext
|
|||
MSG_WriteByte (buf, i);
|
||||
MSG_WriteFloat (buf, realtime - client->connection_started);
|
||||
|
||||
if (ftepext & PEXT_CSQC)
|
||||
if (ftepext & PEXT_BIGUSERINFOS)
|
||||
strcpy (info, client->userinfo);
|
||||
else
|
||||
strcpy (info, client->userinfobasic);
|
||||
|
|
|
@ -2366,7 +2366,7 @@ void SV_SetInfo_f (void)
|
|||
|
||||
if (ISQWCLIENT(client))
|
||||
{
|
||||
if (basic || (client->fteprotocolextensions & PEXT_CSQC))
|
||||
if (basic || (client->fteprotocolextensions & PEXT_BIGUSERINFOS))
|
||||
{
|
||||
MSG_WriteByte (&sv.reliable_datagram, svc_setinfo);
|
||||
MSG_WriteByte (&sv.reliable_datagram, i);
|
||||
|
|
Loading…
Reference in a new issue