aboutsummaryrefslogtreecommitdiff
path: root/src/game/Unit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r--src/game/Unit.cpp2
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;
}