aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Northrend
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2020-08-20 16:03:47 +0200
committerShauren <shauren.trinity@gmail.com>2022-02-04 00:27:10 +0100
commit0a1acb9c0506b3ede101c134d181700c8f271d6c (patch)
treea6b7c4602d56b5bb3f00689611916dfe7176e3bc /src/server/scripts/Northrend
parent17e7f8497c6e47e3e74f5264dfe0c1d90da02901 (diff)
Scripts/Spells: Replace RegisterAuraScript with RegisterSpellScript and remove it
(cherry picked from commit 7d4fbf706ae19481468901ccd65c497fcabe56bf)
Diffstat (limited to 'src/server/scripts/Northrend')
-rw-r--r--src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp2
-rw-r--r--src/server/scripts/Northrend/AzjolNerub/Ahnkahet/instance_ahnkahet.cpp2
-rw-r--r--src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_anubarak.cpp4
-rw-r--r--src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_anubarak_trial.cpp2
-rw-r--r--src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp2
-rw-r--r--src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp14
-rw-r--r--src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp2
-rw-r--r--src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.cpp2
-rw-r--r--src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_krickandick.cpp8
-rw-r--r--src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp6
-rw-r--r--src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp2
-rw-r--r--src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp2
-rw-r--r--src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp2
-rw-r--r--src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp10
-rw-r--r--src/server/scripts/Northrend/Ulduar/Ulduar/boss_auriaya.cpp2
-rw-r--r--src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp4
-rw-r--r--src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp2
-rw-r--r--src/server/scripts/Northrend/Ulduar/Ulduar/boss_xt002.cpp8
-rw-r--r--src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_skadi.cpp2
-rw-r--r--src/server/scripts/Northrend/zone_wintergrasp.cpp2
-rw-r--r--src/server/scripts/Northrend/zone_zuldrak.cpp6
21 files changed, 43 insertions, 43 deletions
diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp
index e52ebcd463e..91452e736f2 100644
--- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp
+++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp
@@ -280,5 +280,5 @@ void AddSC_boss_amanitar()
{
RegisterAhnKahetCreatureAI(boss_amanitar);
RegisterAhnKahetCreatureAI(npc_amanitar_mushrooms);
- RegisterAuraScript(spell_amanitar_potent_fungus);
+ RegisterSpellScript(spell_amanitar_potent_fungus);
}
diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/instance_ahnkahet.cpp b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/instance_ahnkahet.cpp
index a80530aec30..fed5c969258 100644
--- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/instance_ahnkahet.cpp
+++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/instance_ahnkahet.cpp
@@ -173,5 +173,5 @@ class spell_combined_toxins : public AuraScript
void AddSC_instance_ahnkahet()
{
new instance_ahnkahet();
- RegisterAuraScript(spell_combined_toxins);
+ RegisterSpellScript(spell_combined_toxins);
}
diff --git a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_anubarak.cpp b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_anubarak.cpp
index 6f831619168..ba18ecd5104 100644
--- a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_anubarak.cpp
+++ b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_anubarak.cpp
@@ -652,6 +652,6 @@ void AddSC_boss_anub_arak()
RegisterCreatureAIWithFactory(npc_anubarak_anub_ar_venomancer, GetAzjolNerubAI);
RegisterCreatureAIWithFactory(npc_anubarak_impale_target, GetAzjolNerubAI);
- RegisterAuraScript(spell_anubarak_pound);
- RegisterAuraScript(spell_anubarak_carrion_beetles);
+ RegisterSpellScript(spell_anubarak_pound);
+ RegisterSpellScript(spell_anubarak_carrion_beetles);
}
diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_anubarak_trial.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_anubarak_trial.cpp
index 6febcf7f365..d69cbd84a8a 100644
--- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_anubarak_trial.cpp
+++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_anubarak_trial.cpp
@@ -961,7 +961,7 @@ void AddSC_boss_anubarak_trial()
new npc_anubarak_spike();
new npc_frost_sphere();
- RegisterAuraScript(spell_pursuing_spikes);
+ RegisterSpellScript(spell_pursuing_spikes);
new spell_impale();
new spell_anubarak_leeching_swarm();
}
diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp
index 0ae2d22f75d..21eb7f34ceb 100644
--- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp
+++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp
@@ -559,7 +559,7 @@ void AddSC_boss_jaraxxus()
RegisterTrialOfTheCrusaderCreatureAI(npc_fel_infernal);
RegisterTrialOfTheCrusaderCreatureAI(npc_nether_portal);
RegisterTrialOfTheCrusaderCreatureAI(npc_mistress_of_pain);
- RegisterAuraScript(spell_mistress_kiss);
+ RegisterSpellScript(spell_mistress_kiss);
RegisterSpellScript(spell_mistress_kiss_area);
RegisterSpellScript(spell_fel_streak_visual);
}
diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp
index af583068cb0..82660da7619 100644
--- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp
+++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp
@@ -1375,16 +1375,16 @@ void AddSC_boss_northrend_beasts()
RegisterTrialOfTheCrusaderCreatureAI(boss_icehowl);
RegisterTrialOfTheCrusaderCreatureAI(npc_fire_bomb);
- RegisterAuraScript(spell_gormok_jump_to_hand);
- RegisterAuraScript(spell_gormok_ride_player);
- RegisterAuraScript(spell_gormok_snobolled);
- RegisterAuraScript(spell_jormungars_paralytic_toxin);
+ RegisterSpellScript(spell_gormok_jump_to_hand);
+ RegisterSpellScript(spell_gormok_ride_player);
+ RegisterSpellScript(spell_gormok_snobolled);
+ RegisterSpellScript(spell_jormungars_paralytic_toxin);
RegisterSpellScript(spell_jormungars_burning_bile);
- RegisterAuraScript(spell_jormungars_slime_pool);
+ RegisterSpellScript(spell_jormungars_slime_pool);
new spell_jormungars_snakes_spray("spell_jormungars_burning_spray", SPELL_BURNING_BILE);
new spell_jormungars_snakes_spray("spell_jormungars_paralytic_spray", SPELL_PARALYTIC_TOXIN);
- RegisterAuraScript(spell_jormungars_paralysis);
+ RegisterSpellScript(spell_jormungars_paralysis);
RegisterSpellScript(spell_icehowl_arctic_breath);
RegisterSpellScript(spell_icehowl_trample);
- RegisterAuraScript(spell_icehowl_massive_crash);
+ RegisterSpellScript(spell_icehowl_massive_crash);
}
diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp
index a4e1bf0051e..e760e55ebc2 100644
--- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp
+++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp
@@ -919,7 +919,7 @@ void AddSC_boss_twin_valkyr()
new npc_essence_of_twin();
new npc_bullet_controller();
- RegisterAuraScript(spell_bullet_controller);
+ RegisterSpellScript(spell_bullet_controller);
new spell_powering_up();
new spell_valkyr_essences();
new spell_power_of_the_twins();
diff --git a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.cpp b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.cpp
index 868246f7829..dddbb7cb1e1 100644
--- a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.cpp
+++ b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.cpp
@@ -305,5 +305,5 @@ void AddSC_forge_of_souls()
{
new npc_sylvanas_fos();
new npc_jaina_fos();
- RegisterAuraScript(spell_forge_of_souls_soul_sickness);
+ RegisterSpellScript(spell_forge_of_souls_soul_sickness);
}
diff --git a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_krickandick.cpp b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_krickandick.cpp
index 87d6a2e6292..23ecce42299 100644
--- a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_krickandick.cpp
+++ b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_krickandick.cpp
@@ -663,9 +663,9 @@ void AddSC_boss_ick()
{
RegisterPitOfSaronCreatureAI(boss_ick);
RegisterPitOfSaronCreatureAI(boss_krick);
- RegisterAuraScript(spell_krick_explosive_barrage);
- RegisterAuraScript(spell_ick_explosive_barrage);
- RegisterAuraScript(spell_exploding_orb_hasty_grow);
+ RegisterSpellScript(spell_krick_explosive_barrage);
+ RegisterSpellScript(spell_ick_explosive_barrage);
+ RegisterSpellScript(spell_exploding_orb_hasty_grow);
RegisterSpellAndAuraScriptPair(spell_krick_pursuit, spell_krick_pursuit_AuraScript);
- RegisterAuraScript(spell_krick_pursuit_confusion);
+ RegisterSpellScript(spell_krick_pursuit_confusion);
}
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp
index b880fa32ed2..c93bd66e007 100644
--- a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp
+++ b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp
@@ -1580,9 +1580,9 @@ void AddSC_icecrown_citadel()
RegisterIcecrownCitadelCreatureAI(npc_darkfallen_advisor);
RegisterIcecrownCitadelCreatureAI(npc_darkfallen_tactician);
RegisterGameObjectAI(go_empowering_blood_orb);
- RegisterAuraScript(spell_icc_empowered_blood);
- RegisterAuraScript(spell_icc_empowered_blood_3);
- RegisterAuraScript(spell_icc_siphon_essence);
+ RegisterSpellScript(spell_icc_empowered_blood);
+ RegisterSpellScript(spell_icc_empowered_blood_3);
+ RegisterSpellScript(spell_icc_siphon_essence);
RegisterSpellScript(spell_darkfallen_blood_mirror);
RegisterSpellScript(spell_generic_remove_empowered_blood);
new spell_icc_stoneform();
diff --git a/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp b/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp
index 2060f8ec5ab..76ff22d3fc5 100644
--- a/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp
+++ b/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp
@@ -761,6 +761,6 @@ void AddSC_boss_four_horsemen()
new boss_four_horsemen_thane();
new boss_four_horsemen_lady();
new boss_four_horsemen_sir();
- RegisterAuraScript(spell_four_horsemen_mark);
+ RegisterSpellScript(spell_four_horsemen_mark);
RegisterSpellScript(spell_four_horsemen_consumption);
}
diff --git a/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp b/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp
index 6756d0b7f53..ee0bfb57efa 100644
--- a/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp
+++ b/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp
@@ -1032,7 +1032,7 @@ void AddSC_boss_kelthuzad()
new npc_kelthuzad_guardian();
new spell_kelthuzad_chains();
new spell_kelthuzad_detonate_mana();
- RegisterAuraScript(spell_kelthuzad_frost_blast);
+ RegisterSpellScript(spell_kelthuzad_frost_blast);
new at_kelthuzad_center();
new achievement_just_cant_get_enough();
}
diff --git a/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp b/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp
index d176feeb446..f4f5ead41c8 100644
--- a/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp
+++ b/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp
@@ -372,5 +372,5 @@ class spell_urom_frostbomb : public AuraScript
void AddSC_boss_urom()
{
new boss_urom();
- RegisterAuraScript(spell_urom_frostbomb);
+ RegisterSpellScript(spell_urom_frostbomb);
}
diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp
index 36b8f21de73..978099325f0 100644
--- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp
+++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp
@@ -1275,14 +1275,14 @@ void AddSC_boss_algalon_the_observer()
RegisterUlduarCreatureAI(npc_collapsing_star);
RegisterUlduarCreatureAI(npc_brann_bronzebeard_algalon);
RegisterGameObjectAI(go_celestial_planetarium_access);
- RegisterAuraScript(spell_algalon_phase_punch);
- RegisterAuraScript(spell_algalon_phase_constellation);
+ RegisterSpellScript(spell_algalon_phase_punch);
+ RegisterSpellScript(spell_algalon_phase_constellation);
RegisterSpellScript(spell_algalon_trigger_3_adds);
- RegisterAuraScript(spell_algalon_collapse);
+ RegisterSpellScript(spell_algalon_collapse);
RegisterSpellScript(spell_algalon_big_bang);
- RegisterAuraScript(spell_algalon_remove_phase);
+ RegisterSpellScript(spell_algalon_remove_phase);
RegisterSpellScript(spell_algalon_cosmic_smash);
RegisterSpellScript(spell_algalon_cosmic_smash_damage);
RegisterSpellScript(spell_algalon_supermassive_fail);
- RegisterAuraScript(spell_algalon_black_hole_phase_shifts);
+ RegisterSpellScript(spell_algalon_black_hole_phase_shifts);
}
diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_auriaya.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_auriaya.cpp
index 977b87dc0a5..06dc0c246b3 100644
--- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_auriaya.cpp
+++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_auriaya.cpp
@@ -704,7 +704,7 @@ void AddSC_boss_auriaya()
RegisterSpellScript(spell_auriaya_strenght_of_the_pack);
RegisterSpellScript(spell_auriaya_sentinel_blast);
RegisterSpellScript(spell_auriaya_agro_creator);
- RegisterAuraScript(spell_auriaya_random_agro_periodic);
+ RegisterSpellScript(spell_auriaya_random_agro_periodic);
RegisterSpellScript(spell_auriaya_feral_essence_removal);
RegisterSpellScript(spell_auriaya_feral_rush);
new achievement_nine_lives();
diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp
index 3f5ced199b1..f3fbfdebf7f 100644
--- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp
+++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp
@@ -1881,8 +1881,8 @@ void AddSC_boss_flame_leviathan()
new achievement_nuked_from_orbit();
new achievement_orbit_uary();
- RegisterAuraScript(spell_overload_circuit);
- RegisterAuraScript(spell_tar_blaze);
+ RegisterSpellScript(spell_overload_circuit);
+ RegisterSpellScript(spell_tar_blaze);
new spell_load_into_catapult();
new spell_auto_repair();
new spell_systems_shutdown();
diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp
index e307834d869..5f5104b2649 100644
--- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp
+++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp
@@ -1746,7 +1746,7 @@ void AddSC_boss_razorscale()
new go_razorscale_mole_machine();
RegisterSpellScript(spell_razorscale_flame_breath);
RegisterSpellScript(spell_razorscale_summon_iron_dwarves);
- RegisterAuraScript(spell_razorscale_fuse_armor);
+ RegisterSpellScript(spell_razorscale_fuse_armor);
RegisterSpellScript(spell_razorscale_firebolt);
new achievement_iron_dwarf_medium_rare();
new achievement_quick_shave();
diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_xt002.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_xt002.cpp
index 36833c7999d..382f7b74555 100644
--- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_xt002.cpp
+++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_xt002.cpp
@@ -1015,15 +1015,15 @@ void AddSC_boss_xt002()
RegisterUlduarCreatureAI(npc_life_spark);
RegisterUlduarCreatureAI(npc_xt_void_zone);
- RegisterAuraScript(spell_xt002_searing_light_spawn_life_spark);
- RegisterAuraScript(spell_xt002_gravity_bomb_aura);
+ RegisterSpellScript(spell_xt002_searing_light_spawn_life_spark);
+ RegisterSpellScript(spell_xt002_gravity_bomb_aura);
RegisterSpellScript(spell_xt002_gravity_bomb_damage);
RegisterSpellScript(spell_xt002_heart_overload_periodic);
RegisterSpellScript(spell_xt002_energy_orb);
RegisterSpellScript(spell_xt002_tympanic_tantrum);
RegisterSpellScript(spell_xt002_submerged);
- RegisterAuraScript(spell_xt002_321_boombot_aura);
- RegisterAuraScript(spell_xt002_exposed_heart);
+ RegisterSpellScript(spell_xt002_321_boombot_aura);
+ RegisterSpellScript(spell_xt002_exposed_heart);
new achievement_nerf_engineering();
new achievement_heartbreaker();
diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_skadi.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_skadi.cpp
index db683abb93b..9f3059fc043 100644
--- a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_skadi.cpp
+++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_skadi.cpp
@@ -988,7 +988,7 @@ void AddSC_boss_skadi()
new spell_skadi_reset_check();
new spell_skadi_launch_harpoon();
new spell_skadi_poisoned_spear();
- RegisterAuraScript(spell_skadi_ride_vehicle);
+ RegisterSpellScript(spell_skadi_ride_vehicle);
new spell_summon_gauntlet_mobs_periodic();
new achievement_girl_love_to_skadi();
new at_skadi_gaunlet();
diff --git a/src/server/scripts/Northrend/zone_wintergrasp.cpp b/src/server/scripts/Northrend/zone_wintergrasp.cpp
index c50521a6742..6b64ba4eccd 100644
--- a/src/server/scripts/Northrend/zone_wintergrasp.cpp
+++ b/src/server/scripts/Northrend/zone_wintergrasp.cpp
@@ -640,7 +640,7 @@ void AddSC_wintergrasp()
new achievement_wg_didnt_stand_a_chance();
new spell_wintergrasp_defender_teleport();
new spell_wintergrasp_defender_teleport_trigger();
- RegisterAuraScript(spell_wintergrasp_tenacity_refresh);
+ RegisterSpellScript(spell_wintergrasp_tenacity_refresh);
new condition_is_wintergrasp_horde();
new condition_is_wintergrasp_alliance();
}
diff --git a/src/server/scripts/Northrend/zone_zuldrak.cpp b/src/server/scripts/Northrend/zone_zuldrak.cpp
index daf65c1251e..50843c06cb4 100644
--- a/src/server/scripts/Northrend/zone_zuldrak.cpp
+++ b/src/server/scripts/Northrend/zone_zuldrak.cpp
@@ -1060,8 +1060,8 @@ void AddSC_zuldrak()
new spell_pot_check();
new spell_fetch_ingredient_aura();
new npc_storm_cloud();
- RegisterAuraScript(spell_scourge_disguise);
- RegisterAuraScript(spell_scourge_disguise_instability);
- RegisterAuraScript(spell_scourge_disguise_expiring);
+ RegisterSpellScript(spell_scourge_disguise);
+ RegisterSpellScript(spell_scourge_disguise_instability);
+ RegisterSpellScript(spell_scourge_disguise_expiring);
RegisterSpellScript(spell_drop_disguise);
}