From 9e1146bc3052a2a766a8ebddb9e00df183700104 Mon Sep 17 00:00:00 2001 From: James R Date: Sun, 12 Dec 2021 02:47:46 -0800 Subject: [PATCH] Disable downloading for now --- src/d_netfil.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/d_netfil.c b/src/d_netfil.c index 5714c39cd..f8edfbf03 100644 --- a/src/d_netfil.c +++ b/src/d_netfil.c @@ -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"));