Fix CL_ParseDownload when using legacy protocol

This commit is contained in:
Zack Middleton 2015-08-22 20:15:30 -05:00
parent 50c78e6d52
commit 188ca86a92

View file

@ -597,6 +597,11 @@ void CL_ParseDownload ( msg_t *msg ) {
if (clc.downloadSize < 0)
{
#ifdef ELITEFORCE
if (clc.compat)
Com_Error( ERR_DROP, "File not found." );
else
#endif
Com_Error( ERR_DROP, "%s", MSG_ReadString( msg ) );
return;
}