From 5c9d1f8d6ee10c00771a2ec3c719e372cbcf4441 Mon Sep 17 00:00:00 2001 From: Jelle Meeus Date: Sat, 8 Jun 2024 18:00:50 +0200 Subject: [PATCH] fixup! polarity shift --- src/Naxxramas/scripts/boss_thaddius_40.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Naxxramas/scripts/boss_thaddius_40.cpp b/src/Naxxramas/scripts/boss_thaddius_40.cpp index cff5946..476a47a 100644 --- a/src/Naxxramas/scripts/boss_thaddius_40.cpp +++ b/src/Naxxramas/scripts/boss_thaddius_40.cpp @@ -610,9 +610,9 @@ class boss_thaddius_summon_40 : public CreatureScript }; // This will overwrite the declared 10 and 25 man pos_neg_charge to handle all versions of the spell script -class spell_thaddius_pos_neg_charge : public SpellScript +class spell_thaddius_pos_neg_charge_40 : public SpellScript { - PrepareSpellScript(spell_thaddius_pos_neg_charge); + PrepareSpellScript(spell_thaddius_pos_neg_charge_40); void HandleTargets(std::list& targets) { @@ -753,9 +753,9 @@ class at_thaddius_entrance : public AreaTriggerScript } }; -class spell_feugen_static_field : public SpellScript +class spell_feugen_static_field_40 : public SpellScript { - PrepareSpellScript(spell_feugen_static_field); + PrepareSpellScript(spell_feugen_static_field_40); void HandleDamageCalc(SpellEffIndex /*effIndex*/) { @@ -783,8 +783,8 @@ void AddSC_boss_thaddius_40() new boss_thaddius_40(); new boss_thaddius_summon_40(); // new npc_tesla(); - RegisterSpellScript(spell_thaddius_pos_neg_charge); + RegisterSpellScript(spell_thaddius_pos_neg_charge_40); // RegisterSpellScript(spell_thaddius_polarity_shift); // new at_thaddius_entrance(); - RegisterSpellScript(spell_feugen_static_field); + RegisterSpellScript(spell_feugen_static_field_40); }