fix(Scripts/Midsummer): AuraEffectRemoveFn -> AuraEffectApplyFn (#17793)

This commit is contained in:
sudlud
2023-11-19 13:28:38 +01:00
committed by GitHub
parent fd2869f283
commit 09d9a0b73f

View File

@@ -206,7 +206,7 @@ class spell_gen_crab_disguise : public AuraScript
void Register() override
{
AfterEffectApply += AuraEffectRemoveFn(spell_gen_crab_disguise::OnApply, EFFECT_0, SPELL_AURA_FORCE_REACTION, AURA_EFFECT_HANDLE_REAL);
AfterEffectApply += AuraEffectApplyFn(spell_gen_crab_disguise::OnApply, EFFECT_0, SPELL_AURA_FORCE_REACTION, AURA_EFFECT_HANDLE_REAL);
AfterEffectRemove += AuraEffectRemoveFn(spell_gen_crab_disguise::OnRemove, EFFECT_0, SPELL_AURA_FORCE_REACTION, AURA_EFFECT_HANDLE_REAL);
}
};