Small update

* IVEngineServer::PersistenceAvailable() only sets the persistence var in the CClient struct when 'g_bIsPersistenceVarSet[clientidx]' is false.  It sets it to true when a client connects and the var has been set. The var gets reset on any disconnection, and 'g_bIsPersistenceVarSet[clientidx]' gets set to false by CBaseClient::Clear()

* current Origin globals are already cross season compatible.
This commit is contained in:
Amos 2022-01-17 23:26:42 +01:00
parent e28d9060c9
commit a359ae25bc
2 changed files with 0 additions and 10 deletions

View File

@ -9,8 +9,6 @@
void HEbisuSDK_Init()
{
#ifdef DEDICATED
// TODO: Don't hardcode!
// Also add cross-season support?
*(char*)g_bEbisuSDKInitialized = (char)0x1; // <- 1st EbisuSDK
*(char*)g_bEbisuSDKCvarInitialized = (char)0x1; // <- 2nd EbisuSDK
*(char*)g_qEbisuSDKCvarInitialized = (char)0x1; // <- 3rd EbisuSDK

View File

@ -15,14 +15,6 @@
//-----------------------------------------------------------------------------
bool HIVEngineServer_PersistenceAvailable(void* entidx, int clientidx)
{
/* I don't know if permanently setting persistence to ready is a solution
* We might wanna re-think that and handle persistence properly by also removing it on client disconnect.
* Doing it for when we kick someone or ban someone is already a good start. Though we need to figure out how to handle timeouts?
* Maybe NetChan::Shutdown gets called then anyway.
* Then we might need to check ReturnAddress to make sure its not a local disconnect due to local server usage.
* A lot of things to be considered..
* - Pix
*/
CClient* pClient = g_pClient->GetClientInstance(clientidx); // Get client instance.
*(char*)((std::uintptr_t)pClient + g_dwPersistenceVar) = (char)0x5; // Set the client instance to 'ready'.