2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-04-04 16:49:04 +03:00

Merge pull request #408 from dreamstalker/fixes20170319

Reset edict flags on client disconnect.
This commit is contained in:
theAsmodai 2017-03-19 18:32:21 +03:00 committed by GitHub
commit 7e2dac19aa

View File

@ -519,6 +519,13 @@ void SV_DropClient_internal(client_t *cl, qboolean crash, const char *string)
cl->connection_started = realtime;
cl->proxy = FALSE;
COM_ClearCustomizationList(&cl->customdata, FALSE);
#ifdef REHLDS_FIXES
// Reset flags
cl->edict->v.flags = 0;
// Since the edict doesn't get deleted, fix it so it doesn't interfere.
cl->edict->v.takedamage = DAMAGE_NO; // don't attract autoaim
cl->edict->v.solid = SOLID_NOT;
#endif // REHLDS_FIXES
cl->edict = NULL;
Q_memset(cl->userinfo, 0, sizeof(cl->userinfo));
Q_memset(cl->physinfo, 0, sizeof(cl->physinfo));