fix(Scripts/Spells): Fix Itch (26078) not applying Vekniss Catalyst (#12930)

This commit is contained in:
Skjalf
2022-09-03 04:01:39 -03:00
committed by GitHub
parent 9c5397572e
commit 9e7aae74ac
2 changed files with 6 additions and 1 deletions

View File

@@ -4478,7 +4478,8 @@ enum AQSpells
SPELL_CONSUME_LEECH_HEAL_AQ20 = 25378,
SPELL_CONSUME_SPIT_OUT = 25383,
SPELL_HIVEZARA_CATALYST = 25187
SPELL_HIVEZARA_CATALYST = 25187,
SPELL_VEKNISS_CATALYST = 26078
};
class spell_gen_consume : public AuraScript
@@ -4706,4 +4707,5 @@ void AddSC_generic_spell_scripts()
RegisterSpellScript(spell_gen_remove_impairing_auras);
RegisterSpellScriptWithArgs(spell_gen_consume, "spell_consume_aq20", SPELL_CONSUME_LEECH_AQ20, SPELL_CONSUME_LEECH_HEAL_AQ20);
RegisterSpellScriptWithArgs(spell_gen_apply_aura_after_expiration, "spell_itch_aq20", SPELL_HIVEZARA_CATALYST, EFFECT_0, SPELL_AURA_DUMMY);
RegisterSpellScriptWithArgs(spell_gen_apply_aura_after_expiration, "spell_itch_aq40", SPELL_VEKNISS_CATALYST, EFFECT_0, SPELL_AURA_DUMMY);
}