From 296a7ac11d0c159e2abfaa863de5b3d507048c28 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 7 Jul 2024 06:16:46 +0300 Subject: [PATCH] engine: client: fix NetAPI request sending --- engine/client/cl_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_game.c b/engine/client/cl_game.c index 4fda55cb..400974f3 100644 --- a/engine/client/cl_game.c +++ b/engine/client/cl_game.c @@ -3424,7 +3424,7 @@ static void GAME_EXPORT NetAPI_SendRequest( int context, int request, int flags, return; } - if( remote_address->type != NA_IPX && remote_address->type != NA_BROADCAST_IPX ) + if( remote_address->type == NA_IPX || remote_address->type == NA_BROADCAST_IPX ) return; // IPX no longer support if( request == NETAPI_REQUEST_SERVERLIST )