From e84d5814138bbc32d3c716e7d755223a54b53be2 Mon Sep 17 00:00:00 2001 From: Vauff Date: Tue, 9 Sep 2025 16:25:36 -0400 Subject: [PATCH] Fix CNetworkGameServerBase::ConnectClient param type --- 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;