Disable downloading for now

This commit is contained in:
James R 2021-12-12 02:47:46 -08:00
parent f9abe3f2e4
commit 9e1146bc30

View file

@ -276,11 +276,16 @@ boolean CL_CheckDownloadable(void)
}
// Downloading locally disabled
#if 0
if (!dlstatus && M_CheckParm("-nodownload"))
dlstatus = 3;
if (!dlstatus)
return true;
#else
if (!dlstatus)
dlstatus = 3;
#endif
// not downloadable, put reason in console
CONS_Alert(CONS_NOTICE, M_GetText("You need additional files to connect to this server:\n"));