From ac53d4bbb3e33b4b53d63ac56d01e86a9d156bbe Mon Sep 17 00:00:00 2001 From: fickleheart Date: Thu, 18 Apr 2019 00:39:54 -0500 Subject: [PATCH] Show when we're waiting for the full wadlist --- src/d_clisrv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index 08f28d17..f534a60b 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -1259,6 +1259,9 @@ static inline void CL_DrawConnectionStatus(void) cltext = M_GetText("Waiting to download game state..."); break; #endif + case CL_ASKFULLFILELIST: + cltext = M_GetText("This server has a LOT of files!"); + break; case CL_ASKJOIN: case CL_WAITJOINRESPONSE: cltext = M_GetText("Requesting to join...");