mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Fix for the correct map name when playing back an MVD.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@615 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
73966f4eb0
commit
9611c2acc3
1 changed files with 4 additions and 1 deletions
|
@ -202,7 +202,10 @@ void SV_New_f (void)
|
|||
MSG_WriteByte (&host_client->netchan.message, 128);
|
||||
|
||||
// send full levelname
|
||||
MSG_WriteString (&host_client->netchan.message, sv.mapname);
|
||||
if (sv.demostatevalid)
|
||||
MSG_WriteString (&host_client->netchan.message, sv.demfullmapname);
|
||||
else
|
||||
MSG_WriteString (&host_client->netchan.message, sv.mapname);
|
||||
|
||||
//
|
||||
// game server
|
||||
|
|
Loading…
Reference in a new issue