[8049] Added energize effect after last heal tick for 33763 and ranks.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
bobaz 2009-06-20 02:19:15 +02:00 committed by ApoC
parent 8db10be934
commit b2da4b11ce
2 changed files with 7 additions and 1 deletions

View file

@ -2371,6 +2371,12 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
{
int32 amount = m_modifier.m_amount / m_stackAmount;
m_target->CastCustomSpell(m_target, 33778, &amount, NULL, NULL, true, NULL, this, GetCasterGUID());
if (caster)
{
int32 returnmana = (GetSpellProto()->ManaCostPercentage * caster->GetCreateMana() / 100) * m_stackAmount / 2;
caster->CastCustomSpell(caster, 64372, &returnmana, NULL, NULL, true, NULL, this, GetCasterGUID());
}
}
}
return;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8048"
#define REVISION_NR "8049"
#endif // __REVISION_NR_H__