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
|
else
|
||||||
{
|
{
|
||||||
|
char buffer[512];
|
||||||
|
|
||||||
strcpy(tv->status, "Downloading map\n");
|
strcpy(tv->status, "Downloading map\n");
|
||||||
Sys_Printf(tv->cluster, "Attempting download of %s\n", tv->downloadname);
|
Sys_Printf(tv->cluster, "Attempting download of %s\n", tv->downloadname);
|
||||||
SendClientCommand(tv, "download %s\n", tv->map.modellist[1].name);
|
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
|
else
|
||||||
|
|
Loading…
Reference in a new issue