2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-10 21:09:07 +01:00

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

View File

@ -3424,7 +3424,7 @@ static void GAME_EXPORT NetAPI_SendRequest( int context, int request, int flags,
return; 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 return; // IPX no longer support
if( request == NETAPI_REQUEST_SERVERLIST ) if( request == NETAPI_REQUEST_SERVERLIST )