diff options
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index c9769cf89f2..6c4e171e4f1 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -9033,8 +9033,13 @@ uint32 Unit::SpellHealingBonus(SpellEntry const *spellProto, uint32 healamount, int32 pctMod = 0; Unit::AuraList const& auraDummy = pVictim->GetAurasByType(SPELL_AURA_DUMMY); for(Unit::AuraList::const_iterator itr = auraDummy.begin(); itr!=auraDummy.end(); ++itr) + { if((*itr)->GetId() == 29203) - pctMod += (*itr)->GetModifier()->m_amount; + { + pctMod = (*itr)->GetModifier()->m_amount * (*itr)->GetStackAmount(); + break; + } + } // Apply bonus if (pctMod) heal = heal * (100 + pctMod) / 100; |