mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Work around for mvdsv's latest incompatibilities.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3207 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
b5106b68a4
commit
d010181ff7
1 changed files with 4 additions and 2 deletions
|
@ -2464,12 +2464,14 @@ void CL_ParsePlayerinfo (void)
|
|||
return;
|
||||
}
|
||||
|
||||
flags = state->flags = (unsigned short)MSG_ReadShort ();
|
||||
flags = (unsigned short)MSG_ReadShort ();
|
||||
|
||||
if (cls.z_ext & Z_EXT_PM_TYPE)
|
||||
if (cls.fteprotocolextensions & (PEXT_HULLSIZE|PEXT_TRANS|PEXT_SCALE|PEXT_FATNESS))
|
||||
if (flags & PF_EXTRA_PFS)
|
||||
flags |= MSG_ReadByte()<<16;
|
||||
|
||||
state->flags = flags;
|
||||
|
||||
state->messagenum = cl.parsecount;
|
||||
org[0] = MSG_ReadCoord ();
|
||||
org[1] = MSG_ReadCoord ();
|
||||
|
|
Loading…
Reference in a new issue