engine: client: fix NetAPI request sending

This commit is contained in:
Alibek Omarov 2024-07-07 06:16:46 +03:00
parent 6bbf08893e
commit 296a7ac11d
1 changed files with 1 additions and 1 deletions

View File

@ -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 )