From 716e5f58cae9a3f62646379ef6c8e103d1245ade Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 9 Sep 2025 20:02:21 -0400 Subject: [PATCH] Fix CNetworkGameServerBase::ConnectClient param type (#336) --- public/iserver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/iserver.h b/public/iserver.h index c33912be..4dbc8cac 100644 --- a/public/iserver.h +++ b/public/iserver.h @@ -188,7 +188,7 @@ public: virtual void StartHLTVMaster() = 0; - virtual CServerSideClientBase *ConnectClient( const char *pszName, ns_address *pAddr, void *pNetInfo, C2S_CONNECT_Message *pConnectMsg, + virtual CServerSideClientBase *ConnectClient( const char *pszName, ns_address *pAddr, uint32 steam_handle, C2S_CONNECT_Message *pConnectMsg, const char *pszChallenge, const byte *pAuthTicket, int nAuthTicketLength, bool bIsLowViolence ) = 0; virtual CServerSideClientBase *CreateNewClient( CPlayerSlot slot ) = 0;