diff options
author | Shauren <shauren.trinity@gmail.com> | 2020-09-04 17:50:29 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-02-05 11:42:54 +0100 |
commit | f3300899d8514bc4707539b2241d3d2513e4eac0 (patch) | |
tree | 9df28464126ae4e91cf7155c58253423f02b4225 | |
parent | 2ac0960f3f5817cfb89b2fdff3ab4b62489df3a8 (diff) |
Scripts/Icecrown Citadel: Fix scriptname conflict
(cherry picked from commit b63fa9c42f26f3d80d9ace93654de0bac425f8cd)
-rw-r--r-- | src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp index 73b452e90de..26c9ae28acb 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp @@ -1230,9 +1230,9 @@ class spell_sindragosa_frost_beacon : public AuraScript } }; -class spell_sindragosa_ice_tomb : public AuraScript +class spell_sindragosa_ice_tomb_trap : public AuraScript { - PrepareAuraScript(spell_sindragosa_ice_tomb); + PrepareAuraScript(spell_sindragosa_ice_tomb_trap); bool Validate(SpellInfo const* /*spell*/) override { @@ -1274,8 +1274,8 @@ class spell_sindragosa_ice_tomb : public AuraScript void Register() override { - OnEffectPeriodic += AuraEffectPeriodicFn(spell_sindragosa_ice_tomb::PeriodicTick, EFFECT_2, SPELL_AURA_PERIODIC_TRIGGER_SPELL); - AfterEffectRemove += AuraEffectRemoveFn(spell_sindragosa_ice_tomb::HandleRemove, EFFECT_2, SPELL_AURA_PERIODIC_TRIGGER_SPELL, AURA_EFFECT_HANDLE_REAL); + OnEffectPeriodic += AuraEffectPeriodicFn(spell_sindragosa_ice_tomb_trap::PeriodicTick, EFFECT_2, SPELL_AURA_PERIODIC_TRIGGER_SPELL); + AfterEffectRemove += AuraEffectRemoveFn(spell_sindragosa_ice_tomb_trap::HandleRemove, EFFECT_2, SPELL_AURA_PERIODIC_TRIGGER_SPELL, AURA_EFFECT_HANDLE_REAL); } }; @@ -1536,7 +1536,7 @@ void AddSC_boss_sindragosa() RegisterSpellScript(spell_sindragosa_frost_breath); RegisterSpellScript(spell_sindragosa_instability); RegisterSpellScript(spell_sindragosa_frost_beacon); - RegisterSpellScript(spell_sindragosa_ice_tomb); + RegisterSpellScript(spell_sindragosa_ice_tomb_trap); RegisterSpellScript(spell_sindragosa_icy_grip); RegisterSpellScript(spell_sindragosa_mystic_buffet); RegisterSpellScript(spell_rimefang_icy_blast); |