mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
e28d9060c9
commit
a359ae25bc
@ -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
|
||||
|
@ -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'.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user