mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-26 22:01:50 +00:00
prevent mvd playback from doing prespawnie type things.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@574 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
fa303f250e
commit
eac52dedf2
1 changed files with 6 additions and 2 deletions
|
@ -827,7 +827,7 @@ void SV_PreSpawn_f (void)
|
|||
SZ_Clear(&host_client->netchan.message);
|
||||
}
|
||||
|
||||
if (buf >= bufs)
|
||||
if (buf >= bufs && !sv.democausesreconnect)
|
||||
{
|
||||
int i;
|
||||
entity_state_t from;
|
||||
|
@ -969,7 +969,11 @@ void SV_PreSpawn_f (void)
|
|||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
else if (buf >= bufs)
|
||||
{
|
||||
buf = bufs+sv.numextrastatics+sv.num_edicts+255;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (sv.democausesreconnect)
|
||||
SZ_Write (&host_client->netchan.message,
|
||||
|
|
Loading…
Reference in a new issue