mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-01-31 11:20:32 +00:00
Fix CL_ParseDownload when using legacy protocol
This commit is contained in:
parent
50c78e6d52
commit
188ca86a92
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue