diff options
| author | Meji <alvaro.megias@outlook.com> | 2023-12-08 01:54:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-08 01:54:48 +0100 |
| commit | 87f3ab11d3dd5d362657aaae9c02effa8ee95f21 (patch) | |
| tree | ed7a46751ccd76aaf86e0fbc949884bf0abbae29 /src/server/scripts/Shadowlands | |
| parent | 36aac83ea37e667fb8e87fa9f8e97b5f0a38f235 (diff) | |
Core/Spells: Fixed target radius calculation for TARGET_DEST_*_RANDOM (#29479)
Diffstat (limited to 'src/server/scripts/Shadowlands')
| -rw-r--r-- | src/server/scripts/Shadowlands/SepulcherOfTheFirstOnes/boss_anduin_wrynn.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/server/scripts/Shadowlands/SepulcherOfTheFirstOnes/boss_anduin_wrynn.cpp b/src/server/scripts/Shadowlands/SepulcherOfTheFirstOnes/boss_anduin_wrynn.cpp index 02ce46f3d00..0a511949c71 100644 --- a/src/server/scripts/Shadowlands/SepulcherOfTheFirstOnes/boss_anduin_wrynn.cpp +++ b/src/server/scripts/Shadowlands/SepulcherOfTheFirstOnes/boss_anduin_wrynn.cpp @@ -3669,21 +3669,6 @@ class spell_remnant_of_a_fallen_king_army_of_the_dead : public SpellScript } }; -// 362863 - Echoes of Andorhal -class spell_remnant_of_a_fallen_king_echoes_of_andorhal : public SpellScript -{ - void SetDest(SpellDestination& dest) const - { - Position const echoesSummon = GetCaster()->GetRandomPoint(DominationGraspCenter, frand(20.5f, 30.0f)); - dest.Relocate(echoesSummon); - } - - void Register() override - { - OnDestinationTargetSelect += SpellDestinationTargetSelectFn(spell_remnant_of_a_fallen_king_echoes_of_andorhal::SetDest, EFFECT_0, TARGET_DEST_DEST_RANDOM); - } -}; - // 362543 - Remorseless Winter class spell_remnant_of_a_fallen_king_remorseless_winter_periodic : public AuraScript { @@ -3868,7 +3853,6 @@ void AddSC_boss_anduin_wrynn() RegisterSpellScript(spell_remnant_of_a_fallen_king_spawn); RegisterSpellScript(spell_remnant_of_a_fallen_king_energize_runic_power); RegisterSpellScript(spell_remnant_of_a_fallen_king_army_of_the_dead); - RegisterSpellScript(spell_remnant_of_a_fallen_king_echoes_of_andorhal); RegisterSpellScript(spell_remnant_of_a_fallen_king_soul_reaper); RegisterSpellScript(spell_remnant_of_a_fallen_king_remorseless_winter_periodic); RegisterSpellScript(spell_remnant_of_a_fallen_king_remorseless_winter_damage); |
