diff options
author | QAston <none@none> | 2009-06-07 11:50:34 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-06-07 11:50:34 +0200 |
commit | 37d94053df42a9fe894afffae5b372b43704e4cc (patch) | |
tree | 29897cdf954477fd05ced3b80a15d0f3a45d2af0 /src/game/Unit.cpp | |
parent | 90ef7277b502a1d404d8adfb4e35da8b8cbb9a00 (diff) |
*Fix Glyph of Renewed Life.
*Update formula for Death strike healing amount.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index c2d6f77acec..b9ba6dbe2c5 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -6659,7 +6659,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger // Death Strike healing effect if (dummySpell->Id == 45469) { - int32 heal=0.5f * pVictim->GetDiseasesByCaster(GetGUID()) * damage+damage; + int32 heal=pVictim->GetDiseasesByCaster(GetGUID()) * GetMaxHealth()* 5 /100; CastCustomSpell(this,45470,&heal,NULL,NULL,true); return true; } |