diff options
author | thenecromancer <none@none> | 2010-04-03 12:43:36 +0200 |
---|---|---|
committer | thenecromancer <none@none> | 2010-04-03 12:43:36 +0200 |
commit | 18b30b5f1800924dbe93849e9affd98adeae4a21 (patch) | |
tree | df726ece0a110bdd652d6ae4298bb9a1f3380e57 | |
parent | 71082bd48b3dfd20ea9305e180193daa5a1ccb80 (diff) |
Fix periodic heal log (correctly display critical heal tick)
--HG--
branch : trunk
-rw-r--r-- | src/game/Unit.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 4fa18fa2604..92c0da3c2c0 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -4947,7 +4947,8 @@ void Unit::SendPeriodicAuraLog(SpellPeriodicAuraLogInfo *pInfo) case SPELL_AURA_PERIODIC_HEAL: case SPELL_AURA_OBS_MOD_HEALTH: data << uint32(pInfo->damage); // damage - data << uint32(pInfo->overDamage); // overheal? + data << uint32(pInfo->overDamage); // overheal + data << uint32(0); // absorb data << uint8(pInfo->critical); // new 3.1.2 critical tick break; case SPELL_AURA_OBS_MOD_POWER: |