aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSubv <s.v.h21@hotmail.com>2012-04-12 18:39:40 -0500
committerSubv <s.v.h21@hotmail.com>2012-04-12 18:39:40 -0500
commitc04e92564b96e104deabc6997edef9f6c89614ff (patch)
tree2010bf390baf3d849720633e10bfc7548011d06d
parente88e0f08d1998dfbe0f35ac341dc7ed64a0ebdbc (diff)
Core/Spells: Apply Lifebloom's final bloom bonus from Empowered Rejuvenation also on expire. thanks @3kids for noticing
-rwxr-xr-xsrc/server/game/Spells/Auras/SpellAuraEffects.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp
index 0e7090b4bc6..1ad6fe557f9 100755
--- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp
+++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp
@@ -4928,7 +4928,10 @@ void AuraEffect::HandleAuraDummy(AuraApplication const* aurApp, uint8 mode, bool
// final heal
int32 stack = GetBase()->GetStackAmount();
- target->CastCustomSpell(target, 33778, &m_amount, &stack, NULL, true, NULL, this, GetCasterGUID());
+ int32 heal = m_amount;
+ if (caster)
+ heal = caster->SpellHealingBonus(target, GetSpellInfo(), heal, HEAL, stack);
+ target->CastCustomSpell(target, 33778, &heal, &stack, NULL, true, NULL, this, GetCasterGUID());
// restore mana
if (caster)