Few comments

This commit is contained in:
PixieCore 2022-06-15 11:59:37 +02:00
parent a8c29f2abc
commit 15f6fd3123
2 changed files with 3 additions and 2 deletions

View File

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

View File

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