diff options
| author | QAston <none@none> | 2009-04-13 19:51:37 +0200 |
|---|---|---|
| committer | QAston <none@none> | 2009-04-13 19:51:37 +0200 |
| commit | b972327979988d5221b51b22a120874107094324 (patch) | |
| tree | 0352e4cdc9d99c321d92d7843181db850e753800 /src/game/SpellAuras.cpp | |
| parent | 52571d6d48c14ebfffec68b4f47ad499b431fa45 (diff) | |
*Fix healing amount for Haunt
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellAuras.cpp')
| -rw-r--r-- | src/game/SpellAuras.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 975e1310c1c..fb7d2c83f1c 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2434,8 +2434,9 @@ void AuraEffect::HandleAuraDummy(bool apply, bool Real) // Haunt if(m_spellProto->SpellFamilyFlags[1] & 0x40000) { + int32 bp0 = GetParentAura()->GetProcDamage() * m_amount / 100; if(caster) - caster->CastCustomSpell(caster, 48210, &m_currentBasePoints, 0, 0, true); + caster->CastCustomSpell(caster, 48210, &bp0, 0, 0, true, NULL, this); return; } break; |
