diff --git a/r5dev/engine/client/client.cpp b/r5dev/engine/client/client.cpp index d534ae3b..07ccb670 100644 --- a/r5dev/engine/client/client.cpp +++ b/r5dev/engine/client/client.cpp @@ -6,7 +6,7 @@ // //===============================================================================// // client.cpp: implementation of the CClient class. -// +// This is the server implementation, maybe we should move it to engine/server ? /////////////////////////////////////////////////////////////////////////////////// #include "core/stdafx.h" #include "engine/client/client.h" diff --git a/r5dev/engine/server/server.cpp b/r5dev/engine/server/server.cpp index eb4d852f..3c3e2bdb 100644 --- a/r5dev/engine/server/server.cpp +++ b/r5dev/engine/server/server.cpp @@ -87,6 +87,7 @@ CClient* CServer::Authenticate(CServer* pServer, user_creds_s* pInpacket) { Warning(eDLL_T::SERVER, "Connection rejected for '%s' ('%llu' is banned from this server!)\n", svIpAddress.c_str(), pInpacket->m_nNucleusID); } + return nullptr; } } @@ -119,5 +120,5 @@ void CServer_Detach() } /////////////////////////////////////////////////////////////////////////////// -bool g_bCheckCompBanDB = true; +bool g_bCheckCompBanDB = true; // Maybe make this a static method in CServer? It won't be added to the struct offsets then. CServer* g_pServer = nullptr; \ No newline at end of file