diff --git a/code/server/sv_client.c b/code/server/sv_client.c index 2490ab55..6461b3d8 100644 --- a/code/server/sv_client.c +++ b/code/server/sv_client.c @@ -915,11 +915,15 @@ void SV_WriteDownloadToClient( client_t *cl , msg_t *msg ) } else if (idPack) { Com_Printf("clientDownload: %d : \"%s\" cannot download id pk3 files\n", (int) (cl - svs.clients), cl->downloadName); - if (missionPack) { +#ifndef STANDALONE + if(missionPack) + { Com_sprintf(errorMessage, sizeof(errorMessage), "Cannot autodownload Team Arena file \"%s\"\n" "The Team Arena mission pack can be found in your local game store.", cl->downloadName); } - else { + else +#endif + { Com_sprintf(errorMessage, sizeof(errorMessage), "Cannot autodownload id pk3 file \"%s\"", cl->downloadName); } }