git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4266 fc73d0e0-1445-4013-8a0c-d673dee63da5

This commit is contained in:
Spoike 2013-03-18 00:04:03 +00:00
parent 68ab5b3292
commit 94e57a8dd2
2 changed files with 6 additions and 3 deletions

View file

@ -2036,6 +2036,12 @@ void SV_WritePlayersToClient (client_t *client, client_frame_t *frame, edict_t *
#define DF_DEAD (1<<8)
#define DF_GIB (1<<9)
if (client->state < cs_spawned)
{
Con_Printf("SV_WritePlayersToClient: not spawned yet\n", client->namebuf);
return;
}
if (clent == NULL) //write to demo file. (no PVS)
{
demo_frame = &demo.frames[demo.parsecount&DEMO_FRAMES_MASK];

View file

@ -1613,9 +1613,6 @@ static qboolean SV_MVD_Record (mvddest_t *dest)
//pointless extensions that are redundant with mvds
demo.recorder.fteprotocolextensions &= ~PEXT_ACCURATETIMINGS | PEXT_HLBSP|PEXT_Q2BSP|PEXT_Q3BSP;
/*assume that all playback will be done with a valid csprogs that can correctly decode*/
demo.recorder.csqcactive = (demo.recorder.fteprotocolextensions & PEXT_CSQC);
}
// else
// SV_WriteRecordMVDMessage(&buf, dem_read);