Deactivate satchels on disconnect.

This commit is contained in:
Night Owl 2017-07-03 03:24:14 +05:00
parent 98a562c20e
commit 4800c0d54c
1 changed files with 11 additions and 7 deletions

View File

@ -110,14 +110,12 @@ void ClientDisconnect( edict_t *pEntity )
WRITE_STRING( text );
MESSAGE_END();
CSound *pSound;
pSound = CSoundEnt::SoundPointerForIndex( CSoundEnt::ClientSoundIndex( pEntity ) );
CSound *pSound = CSoundEnt::SoundPointerForIndex( CSoundEnt::ClientSoundIndex( pEntity ) );
// since this client isn't around to think anymore, reset their sound.
if( pSound )
{
// since this client isn't around to think anymore, reset their sound.
if( pSound )
{
pSound->Reset();
}
pSound->Reset();
}
// since the edict doesn't get deleted, fix it so it doesn't interfere.
@ -125,6 +123,12 @@ void ClientDisconnect( edict_t *pEntity )
pEntity->v.solid = SOLID_NOT;// nonsolid
UTIL_SetOrigin( &pEntity->v, pEntity->v.origin );
CBasePlayer *pl = (CBasePlayer *)CBaseEntity::Instance( pEntity );
if( pl->HasNamedPlayerItem( "weapon_satchel" ) )
{
DeactivateSatchels( pl );
}
g_pGameRules->ClientDisconnected( pEntity );
}