Bugfix.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2130 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
1d22a86161
commit
d7066f920b
1 changed files with 4 additions and 1 deletions
|
@ -704,7 +704,10 @@ qboolean SV_LoadLevelCache(char *level, char *startspot, qboolean ignoreplayers)
|
|||
if (e2)
|
||||
e2->_float = 1;
|
||||
for (j=0 ; j< NUM_SPAWN_PARMS ; j++)
|
||||
*spawnparamglobals[j] = host_client->spawn_parms[j];
|
||||
{
|
||||
if (spawnparamglobals[j])
|
||||
*spawnparamglobals[j] = host_client->spawn_parms[j];
|
||||
}
|
||||
pr_global_struct->time = sv.time;
|
||||
pr_global_struct->self = EDICT_TO_PROG(svprogfuncs, ent);
|
||||
ent->area.next = ent->area.prev = NULL;
|
||||
|
|
Loading…
Reference in a new issue