Core/Spell: Fix Mage Frostfire bolt, now it will not put target into combat at expire (#26775)

This commit is contained in:
Gildor
2021-08-08 13:17:00 +02:00
committed by GitHub
parent 6a0703de50
commit 39a1fd4890

View File

@@ -572,7 +572,7 @@ class spell_mage_frostfire_bolt : public AuraScript
void Register() override
{
AfterEffectApply += AuraEffectApplyFn(spell_mage_frostfire_bolt::ApplyPermafrost, EFFECT_0, SPELL_AURA_MOD_DECREASE_SPEED, AURA_EFFECT_HANDLE_REAL_OR_REAPPLY_MASK);
AfterEffectRemove += AuraEffectRemoveFn(spell_mage_frostfire_bolt::ApplyPermafrost, EFFECT_0, SPELL_AURA_MOD_DECREASE_SPEED, AURA_EFFECT_HANDLE_REAL);
AfterEffectRemove += AuraEffectRemoveFn(spell_mage_frostfire_bolt::RemovePermafrost, EFFECT_0, SPELL_AURA_MOD_DECREASE_SPEED, AURA_EFFECT_HANDLE_REAL);
}
};