mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
Yibble.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3248 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
5bb7c56c1a
commit
041dcbe4e9
1 changed files with 4 additions and 1 deletions
|
@ -1707,11 +1707,14 @@ void ParseMessage(sv_t *tv, void *buffer, int length, int to, int mask)
|
|||
}
|
||||
else
|
||||
{
|
||||
char buffer[512];
|
||||
|
||||
strcpy(tv->status, "Downloading map\n");
|
||||
Sys_Printf(tv->cluster, "Attempting download of %s\n", tv->downloadname);
|
||||
SendClientCommand(tv, "download %s\n", tv->map.modellist[1].name);
|
||||
|
||||
QW_StreamPrint(tv->cluster, tv, NULL, "[QTV] Attempting map download (%s)\n", tv->map.modellist[1].name);
|
||||
snprintf(buffer, sizeof(buffer), "[QTV] Attempting map download (%s)\n", tv->map.modellist[1].name);
|
||||
QW_StreamPrint(tv->cluster, tv, NULL, buffer);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue