*Fix Glyph of Renewed Life.

*Update formula for Death strike healing amount.

--HG--
branch : trunk
This commit is contained in:
QAston
2009-06-07 11:50:34 +02:00
parent 90ef7277b5
commit 37d94053df
2 changed files with 3 additions and 3 deletions

View File

@@ -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;
}