diff options
author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2022-06-16 15:43:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 15:43:23 +0200 |
commit | 0c1d3e9fdaae7b3388fba972991f70c71e528dd8 (patch) | |
tree | 37f4acf998a7f4ccce001ee104cf1a2aeb6752db /src | |
parent | deea9b95a22dca26d83fd405b44934bc19a9d5bb (diff) |
Scripts/Icecrown Citadel: Fix spirit alarms activation (#28029)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp index 4da7988aa3a..276d6a7b0bf 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp @@ -1335,9 +1335,9 @@ class spell_icc_stoneform : public AuraScript }; // 70536, 70545, 70546, 70547 - Spirit Alarm -class spell_icc_sprit_alarm : public SpellScript +class spell_icc_spirit_alarm : public SpellScript { - PrepareSpellScript(spell_icc_sprit_alarm); + PrepareSpellScript(spell_icc_spirit_alarm); void HandleEvent(SpellEffIndex effIndex) { @@ -1382,7 +1382,7 @@ class spell_icc_sprit_alarm : public SpellScript void Register() override { - OnEffectHit += SpellEffectFn(spell_icc_sprit_alarm::HandleEvent, EFFECT_2, SPELL_EFFECT_SEND_EVENT); + OnEffectHit += SpellEffectFn(spell_icc_spirit_alarm::HandleEvent, EFFECT_1, SPELL_EFFECT_SEND_EVENT); } }; @@ -1619,7 +1619,7 @@ void AddSC_icecrown_citadel() RegisterSpellScript(spell_darkfallen_blood_mirror); RegisterSpellScript(spell_generic_remove_empowered_blood); RegisterSpellScript(spell_icc_stoneform); - RegisterSpellScript(spell_icc_sprit_alarm); + RegisterSpellScript(spell_icc_spirit_alarm); RegisterSpellScript(spell_frost_giant_death_plague); RegisterSpellScript(spell_icc_harvest_blight_specimen); RegisterSpellScript(spell_icc_soul_missile); |