From 65968f00d3c0ef69fa3d0304fe70ec51651ee6bd Mon Sep 17 00:00:00 2001 From: James R Date: Wed, 19 Aug 2020 17:55:01 -0700 Subject: [PATCH] Fix tiny mistake with the last commit --- src/d_clisrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index e947964c..929a992c 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -2421,7 +2421,7 @@ static boolean CL_ServerConnectionTicker(const char *tmpsave, tic_t *oldtic, tic } break; case CL_WAITJOINRESPONSE: - if (( I_GetTime() - NEWTICRATE*3 ) >= *asksent && CL_SendJoin()) + if (( I_GetTime() - NEWTICRATE*3 ) >= *asksent) { cl_mode = CL_ASKJOIN; }