another attempt at this

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2631 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
TimeServ 2007-09-01 04:56:04 +00:00
parent d5d08045ed
commit ba985019ef
1 changed files with 2 additions and 4 deletions

View File

@ -1947,10 +1947,8 @@ void SV_BeginDownload_f(void)
if (mvdname) if (mvdname)
{ {
ClientReliableWrite_Begin (host_client, svc_stufftext, 16+strlen(mvdname)); ClientReliableWrite_Begin (host_client, svc_stufftext, 17+strlen(mvdname));
ClientReliableWrite_String (host_client, "download demos/"); // 15 ClientReliableWrite_String (host_client, va("\ndownload demos/%s\n", mvdname));
ClientReliableWrite_String (host_client, mvdname);
ClientReliableWrite_String (host_client, "\n"); // 1
} }
return; return;
} }