diff options
-rw-r--r-- | sql/updates/world/2011_09_02_02_world_spell_script_names.sql | 6 | ||||
-rw-r--r-- | src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/sql/updates/world/2011_09_02_02_world_spell_script_names.sql b/sql/updates/world/2011_09_02_02_world_spell_script_names.sql new file mode 100644 index 00000000000..b95cd2c17d6 --- /dev/null +++ b/sql/updates/world/2011_09_02_02_world_spell_script_names.sql @@ -0,0 +1,6 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_rotface_mutated_infection'; +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(69674,'spell_rotface_mutated_infection'), +(71224,'spell_rotface_mutated_infection'), +(73022,'spell_rotface_mutated_infection'), +(73023,'spell_rotface_mutated_infection'); diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp index 4022983544d..4673b2bea20 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp @@ -1177,7 +1177,7 @@ class spell_dreamwalker_summoner : public SpellScriptLoader void FilterTargets(std::list<Unit*>& targets) { - targets.remove_if(SummonTargetSelector()); + targets.remove_if(Trinity::UnitAuraCheck(true, SPELL_RECENTLY_SPAWNED)); if (targets.empty()) return; |