From b2f4d84272c21226a91866c9d494c9510ca14e66 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 8 Sep 2025 21:19:53 +0500 Subject: [PATCH] engine: client: give server a bit more time to reply to bandwidth test --- engine/client/cl_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_main.c b/engine/client/cl_main.c index f2a9627f..3f427b51 100644 --- a/engine/client/cl_main.c +++ b/engine/client/cl_main.c @@ -1234,7 +1234,7 @@ static void CL_CheckForResend( void ) Cvar_DirectSetValue( &cl_resend, CL_MAX_RESEND_TIME ); bandwidthTest = cls.legacymode == PROTO_CURRENT && cl_test_bandwidth.value && cls.connect_retry <= CL_TEST_RETRIES; - resendTime = bandwidthTest ? 1.0f : cl_resend.value; + resendTime = bandwidthTest ? 2.0f : cl_resend.value; if(( host.realtime - cls.connect_time ) < resendTime ) return;