From ba985019efaa1bfe8cfc5c6be19636ccba599f66 Mon Sep 17 00:00:00 2001 From: TimeServ Date: Sat, 1 Sep 2007 04:56:04 +0000 Subject: [PATCH] another attempt at this git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2631 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/server/sv_user.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/engine/server/sv_user.c b/engine/server/sv_user.c index 011ae509c..6034439ba 100644 --- a/engine/server/sv_user.c +++ b/engine/server/sv_user.c @@ -1947,10 +1947,8 @@ void SV_BeginDownload_f(void) if (mvdname) { - ClientReliableWrite_Begin (host_client, svc_stufftext, 16+strlen(mvdname)); - ClientReliableWrite_String (host_client, "download demos/"); // 15 - ClientReliableWrite_String (host_client, mvdname); - ClientReliableWrite_String (host_client, "\n"); // 1 + ClientReliableWrite_Begin (host_client, svc_stufftext, 17+strlen(mvdname)); + ClientReliableWrite_String (host_client, va("\ndownload demos/%s\n", mvdname)); } return; }