Browse Source

Merge pull request #166 from FreeCollective/master

possible crash fix for DeathNotice
hl_urbicide
nekonomicon 4 years ago committed by GitHub
parent
commit
814395c255
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      dlls/multiplay_gamerules.cpp

6
dlls/multiplay_gamerules.cpp

@ -709,12 +709,12 @@ void CHalfLifeMultiplay::DeathNotice( CBasePlayer *pVictim, entvars_t *pKiller, @@ -709,12 +709,12 @@ void CHalfLifeMultiplay::DeathNotice( CBasePlayer *pVictim, entvars_t *pKiller,
const char *tau = "tau_cannon";
const char *gluon = "gluon gun";
if( pevInflictor )
{
if( pKiller->flags & FL_CLIENT )
{
killer_index = ENTINDEX( ENT( pKiller ) );
if( pevInflictor )
{
if( pevInflictor == pKiller )
{
// If the inflictor is the killer, then it must be their current weapon doing the damage
@ -730,11 +730,11 @@ void CHalfLifeMultiplay::DeathNotice( CBasePlayer *pVictim, entvars_t *pKiller, @@ -730,11 +730,11 @@ void CHalfLifeMultiplay::DeathNotice( CBasePlayer *pVictim, entvars_t *pKiller,
killer_weapon_name = STRING( pevInflictor->classname ); // it's just that easy
}
}
}
else
{
killer_weapon_name = STRING( pevInflictor->classname );
}
}
// strip the monster_* or weapon_* from the inflictor's classname
if( strncmp( killer_weapon_name, "weapon_", 7 ) == 0 )

Loading…
Cancel
Save