Core/Spells: use OnSpellStart hook to properly fix Mage's Early Frost talent

This commit is contained in:
Ovahlord
2019-02-14 09:07:52 +01:00
parent 2e551a052e
commit 0fb552e72e

View File

@@ -664,7 +664,7 @@ class spell_mage_frostbolt : public SpellScript
void Register() override
{
BeforeCast += SpellCastFn(spell_mage_frostbolt::HandleEarlyFrost);
OnSpellStart += SpellCastFn(spell_mage_frostbolt::HandleEarlyFrost);
OnEffectHitTarget += SpellEffectFn(spell_mage_frostbolt::RecalculateDamage, EFFECT_1, SPELL_EFFECT_SCHOOL_DAMAGE);
}