Skip to content

Commit

Permalink
fixup! polarity shift
Browse files Browse the repository at this point in the history
  • Loading branch information
sogladev committed Jun 8, 2024
1 parent eefb6fb commit 5c9d1f8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Naxxramas/scripts/boss_thaddius_40.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<WorldObject*>& targets)
{
Expand Down Expand Up @@ -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*/)
{
Expand Down Expand Up @@ -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);
}

0 comments on commit 5c9d1f8

Please sign in to comment.