Fix Holy Walk

This commit is contained in:
zamalaev 2013-12-21 21:30:57 +04:00 committed by Antz
parent 9decc79dd0
commit 7bfa13761a

View file

@ -9867,6 +9867,9 @@ void SpellAuraHolder::HandleSpellSpecificBoosts(bool apply)
int32 heal = (glyph->GetModifier()->m_amount * shield->GetModifier()->m_amount) / 100; int32 heal = (glyph->GetModifier()->m_amount * shield->GetModifier()->m_amount) / 100;
caster->CastCustomSpell(m_target, 56160, &heal, NULL, NULL, true, 0, shield); caster->CastCustomSpell(m_target, 56160, &heal, NULL, NULL, true, 0, shield);
} }
// Holy Walk
if (caster == m_target && caster->HasAura(33333))
caster->CastSpell(caster, 96219, true);
return; return;
} }