fall damage bug fix

This commit is contained in:
Bryce Hutchings 2002-04-06 20:47:24 +00:00
parent b355a8b0f5
commit 7babfd9999
1 changed files with 6 additions and 4 deletions

View File

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.58 2002/04/06 20:47:24 niceass
// fall damage bug fix
//
// Revision 1.57 2002/04/03 09:26:47 jbravo
// New FF system. Warns and then finally kickbans teamwounders and
// teamkillers
@ -1885,12 +1888,11 @@ void G_Damage( gentity_t *targ, gentity_t *inflictor, gentity_t *attacker,
}
}
// do the damage
if (take) {
// G_Printf("(%d) taken as damage\n",take);
// JBravo: for Damage delt tracking
attacker->client->ps.persistant[PERS_DAMAGE_DELT] += take;
if (attacker && attacker->client) attacker->client->ps.persistant[PERS_DAMAGE_DELT] += take;
if (instant_dam) {
// G_Printf("(%d) instant damage\n",take);
targ->health = targ->health - take;