diff options
| author | Shauren <shauren.trinity@gmail.com> | 2020-08-20 16:03:47 +0200 | 
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-02-04 00:27:10 +0100 | 
| commit | 0a1acb9c0506b3ede101c134d181700c8f271d6c (patch) | |
| tree | a6b7c4602d56b5bb3f00689611916dfe7176e3bc /src/server/scripts/Argus | |
| parent | 17e7f8497c6e47e3e74f5264dfe0c1d90da02901 (diff) | |
Scripts/Spells: Replace RegisterAuraScript with RegisterSpellScript and remove it
(cherry picked from commit 7d4fbf706ae19481468901ccd65c497fcabe56bf)
Diffstat (limited to 'src/server/scripts/Argus')
| -rw-r--r-- | src/server/scripts/Argus/AntorusTheBurningThrone/boss_garothi_worldbreaker.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/scripts/Argus/AntorusTheBurningThrone/boss_garothi_worldbreaker.cpp b/src/server/scripts/Argus/AntorusTheBurningThrone/boss_garothi_worldbreaker.cpp index 8d4b38852d4..7ba2a494731 100644 --- a/src/server/scripts/Argus/AntorusTheBurningThrone/boss_garothi_worldbreaker.cpp +++ b/src/server/scripts/Argus/AntorusTheBurningThrone/boss_garothi_worldbreaker.cpp @@ -892,18 +892,18 @@ void AddSC_boss_garothi_worldbreaker()  {      RegisterAntorusTheBurningThroneCreatureAI(boss_garothi_worldbreaker);      RegisterAreaTriggerAI(at_garothi_annihilation); -    RegisterAuraScript(spell_garothi_apocalypse_drive); +    RegisterSpellScript(spell_garothi_apocalypse_drive);      RegisterSpellScript(spell_garothi_fel_bombardment_selector); -    RegisterAuraScript(spell_garothi_fel_bombardment_warning); -    RegisterAuraScript(spell_garothi_fel_bombardment_periodic); +    RegisterSpellScript(spell_garothi_fel_bombardment_warning); +    RegisterSpellScript(spell_garothi_fel_bombardment_periodic);      RegisterSpellScript(spell_garothi_searing_barrage_dummy);      RegisterSpellScript(spell_garothi_searing_barrage_selector);      RegisterSpellScript(spell_garothi_decimation_selector); -    RegisterAuraScript(spell_garothi_decimation_warning); -    RegisterAuraScript(spell_garothi_carnage); +    RegisterSpellScript(spell_garothi_decimation_warning); +    RegisterSpellScript(spell_garothi_carnage);      RegisterSpellScript(spell_garothi_annihilation_selector);      RegisterSpellScript(spell_garothi_annihilation_triggered);      RegisterSpellScript(spell_garothi_eradication); -    RegisterAuraScript(spell_garothi_surging_fel); +    RegisterSpellScript(spell_garothi_surging_fel);      RegisterSpellScript(spell_garothi_cannon_chooser);  }  | 
