diff options
| author | Shauren <shauren.trinity@gmail.com> | 2023-07-24 10:48:50 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2023-07-24 10:48:50 +0200 |
| commit | 2e7e49b749e16f5cf9d0a2f4518f9aa7fef2308b (patch) | |
| tree | 4c5d6a15ff3c74a2a2eaf35ea6a7d9319848104d /src/server/scripts/Outland/Auchindoun | |
| parent | 228c56f3c5e23345cf2b5a391c614e52f61fe7f9 (diff) | |
Scripts/Spells: Removed unneccessary PrepareSpellScript and PrepareAuraScript uses
Diffstat (limited to 'src/server/scripts/Outland/Auchindoun')
5 files changed, 0 insertions, 16 deletions
diff --git a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp index 5fecee52b14..456ceb98b0a 100644 --- a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp +++ b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp @@ -352,8 +352,6 @@ private: // 33326 - Stolen Soul Dispel class spell_exarch_maladaar_stolen_soul_dispel : public AuraScript { - PrepareAuraScript(spell_exarch_maladaar_stolen_soul_dispel); - bool Validate(SpellInfo const* /*spell*/) override { return ValidateSpellInfo({ SPELL_STOLEN_SOUL }); diff --git a/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_talon_king_ikiss.cpp b/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_talon_king_ikiss.cpp index e594ee7a6e6..24912ea91ee 100644 --- a/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_talon_king_ikiss.cpp +++ b/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_talon_king_ikiss.cpp @@ -154,8 +154,6 @@ struct boss_talon_king_ikiss : public BossAI // 38194 - Blink class spell_talon_king_ikiss_blink : public SpellScript { - PrepareSpellScript(spell_talon_king_ikiss_blink); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_BLINK_TELEPORT }); diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp index 50e8cc2d488..38a7fd78d66 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp @@ -206,8 +206,6 @@ struct boss_blackheart_the_inciter_mc_dummy : public NullCreatureAI // 33676 - Incite Chaos class spell_blackheart_incite_chaos : public SpellScript { - PrepareSpellScript(spell_blackheart_incite_chaos); - bool Validate(SpellInfo const* /*spell*/) override { return ValidateSpellInfo({ SPELL_INCITE_CHAOS_B }); diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp index c091efd21c9..47655500d92 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp @@ -156,8 +156,6 @@ struct boss_murmur : public BossAI // 33923, 38796 - Sonic Boom class spell_murmur_sonic_boom : public SpellScript { - PrepareSpellScript(spell_murmur_sonic_boom); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_SONIC_BOOM_EFFECT }); @@ -177,8 +175,6 @@ class spell_murmur_sonic_boom : public SpellScript // 33666, 38795 - Sonic Boom Effect class spell_murmur_sonic_boom_effect : public SpellScript { - PrepareSpellScript(spell_murmur_sonic_boom_effect); - void CalcDamage() { if (Unit* target = GetHitUnit()) @@ -209,8 +205,6 @@ class ThunderingStormCheck // 39365 - Thundering Storm class spell_murmur_thundering_storm : public SpellScript { - PrepareSpellScript(spell_murmur_thundering_storm); - void FilterTarget(std::list<WorldObject*>& targets) { targets.remove_if(ThunderingStormCheck(GetCaster())); @@ -225,8 +219,6 @@ class spell_murmur_thundering_storm : public SpellScript // 33711, 38794 - Murmur's Touch class spell_murmur_murmurs_touch : public AuraScript { - PrepareAuraScript(spell_murmur_murmurs_touch); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo( diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/shadow_labyrinth.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/shadow_labyrinth.cpp index 433c3ee1ba1..ce4eb611ed9 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/shadow_labyrinth.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/shadow_labyrinth.cpp @@ -27,8 +27,6 @@ enum Spells // 33493 - Mark of Malice class spell_mark_of_malice : public AuraScript { - PrepareAuraScript(spell_mark_of_malice); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_MARK_OF_MALICE_TRIGGERED }); |
