diff options
Diffstat (limited to 'src/server/scripts/DragonIsles')
3 files changed, 0 insertions, 26 deletions
diff --git a/src/server/scripts/DragonIsles/AzureVault/boss_leymor.cpp b/src/server/scripts/DragonIsles/AzureVault/boss_leymor.cpp index 92620beea4c..b872e52d73d 100644 --- a/src/server/scripts/DragonIsles/AzureVault/boss_leymor.cpp +++ b/src/server/scripts/DragonIsles/AzureVault/boss_leymor.cpp @@ -385,8 +385,6 @@ static Position const LeyLineSproutGroupOrigin[] = // 374364 - Ley-Line Sprouts class spell_ley_line_sprouts : public SpellScript { - PrepareSpellScript(spell_ley_line_sprouts); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_LEY_LINE_SPROUTS_MISSILE }); @@ -410,8 +408,6 @@ class spell_ley_line_sprouts : public SpellScript // 375732 - Stasis Ritual class spell_stasis_ritual : public AuraScript { - PrepareAuraScript(spell_stasis_ritual); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_STASIS_RITUAL_MISSILE }); @@ -432,8 +428,6 @@ class spell_stasis_ritual : public AuraScript // 375652 - Wild Eruption class spell_wild_eruption : public SpellScript { - PrepareSpellScript(spell_wild_eruption); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_WILD_ERUPTION_MISSILE }); @@ -475,8 +469,6 @@ struct at_leymor_arcane_eruption : AreaTriggerAI // 374567 - Explosive Brand class spell_explosive_brand : public SpellScript { - PrepareSpellScript(spell_explosive_brand); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_EXPLOSIVE_BRAND_KNOCKBACK }); @@ -496,8 +488,6 @@ class spell_explosive_brand : public SpellScript // 374567 - Explosive Brand class spell_explosive_brand_AuraScript : public AuraScript { - PrepareAuraScript(spell_explosive_brand_AuraScript); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_EXPLOSIVE_BRAND_DAMAGE }); @@ -521,8 +511,6 @@ class spell_explosive_brand_AuraScript : public AuraScript // 374720 - Consuming Stomp class spell_consuming_stomp : public AuraScript { - PrepareAuraScript(spell_consuming_stomp); - void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/) { GetTarget()->KillSelf(); @@ -537,8 +525,6 @@ class spell_consuming_stomp : public AuraScript // 386660 - Erupting Fissure class spell_erupting_fissure : public SpellScript { - PrepareSpellScript(spell_erupting_fissure); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_ERUPTING_FISSURE_SPROUT_SELECTOR }); @@ -558,8 +544,6 @@ class spell_erupting_fissure : public SpellScript // 375591 - Sappy Burst class spell_sappy_burst : public SpellScript { - PrepareSpellScript(spell_sappy_burst); - void HandleHitTarget(SpellEffIndex /*effIndex*/) { GetCaster()->KillSelf(); diff --git a/src/server/scripts/DragonIsles/RubyLifePools/ruby_life_pools.cpp b/src/server/scripts/DragonIsles/RubyLifePools/ruby_life_pools.cpp index 03c6731718b..6071c26ac87 100644 --- a/src/server/scripts/DragonIsles/RubyLifePools/ruby_life_pools.cpp +++ b/src/server/scripts/DragonIsles/RubyLifePools/ruby_life_pools.cpp @@ -33,8 +33,6 @@ enum RLPSpells // 371652 - Executed class spell_ruby_life_pools_executed : public AuraScript { - PrepareAuraScript(spell_ruby_life_pools_executed); - void HandleEffectApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/) { Unit* target = GetTarget(); @@ -52,8 +50,6 @@ class spell_ruby_life_pools_executed : public AuraScript // 384933 - Ice Shield class spell_ruby_life_pools_ice_shield : public AuraScript { - PrepareAuraScript(spell_ruby_life_pools_ice_shield); - void HandleEffectPeriodic(AuraEffect const* /*aurEff*/) { Unit* target = GetTarget(); @@ -71,8 +67,6 @@ class spell_ruby_life_pools_ice_shield : public AuraScript // 372793 - Excavate class spell_ruby_life_pools_excavate : public AuraScript { - PrepareAuraScript(spell_ruby_life_pools_excavate); - void HandleEffectPeriodic(AuraEffect const* /*aurEff*/) { if (Unit* caster = GetCaster()) @@ -88,8 +82,6 @@ class spell_ruby_life_pools_excavate : public AuraScript // 395029 - Storm Infusion class spell_ruby_life_pools_storm_infusion : public SpellScript { - PrepareSpellScript(spell_ruby_life_pools_storm_infusion); - void SetDest(SpellDestination& dest) { dest.RelocateOffset({ 9.0f, 0.0f, 4.0f, 0.0f }); diff --git a/src/server/scripts/DragonIsles/zone_the_forbidden_reach.cpp b/src/server/scripts/DragonIsles/zone_the_forbidden_reach.cpp index e6af907968e..4e9057b6c28 100644 --- a/src/server/scripts/DragonIsles/zone_the_forbidden_reach.cpp +++ b/src/server/scripts/DragonIsles/zone_the_forbidden_reach.cpp @@ -50,8 +50,6 @@ std::array<std::pair<uint32, Position>, 4> LoginRoomData = // 369728 - Dracthyr Login class spell_dracthyr_login : public SpellScript { - PrepareSpellScript(spell_dracthyr_login); - bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_DRACTHYR_MOVIE_ROOM_01, SPELL_DRACTHYR_MOVIE_ROOM_02, SPELL_DRACTHYR_MOVIE_ROOM_03, SPELL_DRACTHYR_MOVIE_ROOM_04 }); |