aboutsummaryrefslogtreecommitdiff
path: root/src/server
diff options
context:
space:
mode:
authorD4R4 <daraardalan@gmail.com>2015-03-07 17:46:43 +0100
committerjoschiwald <joschiwald.trinity@gmail.com>2015-03-07 17:50:02 +0100
commit610411ce5a2bc8cb1580be4e44ed6020240b44b4 (patch)
tree0aceea01ea50b2eea1945abefa6595ed1b2d6b06 /src/server
parentf65d9b3fea18b5092ee3c9c936185fafdd268fee (diff)
Scripts/The Lich King: Defile should not grow when player grabbed by Val'kyr is moves across
Closes #14131 (cherry picked from commit ceea37c9e3304ea2b387b7d3f6ea201b43c2615d)
Diffstat (limited to 'src/server')
-rw-r--r--src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp
index 89ab59de1db..6757fead608 100644
--- a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp
+++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp
@@ -2396,6 +2396,7 @@ class spell_the_lich_king_defile : public SpellScriptLoader
void CorrectRange(std::list<WorldObject*>& targets)
{
targets.remove_if(ExactDistanceCheck(GetCaster(), 10.0f * GetCaster()->GetObjectScale()));
+ targets.remove_if(Trinity::UnitAuraCheck(true, SPELL_HARVEST_SOUL_VALKYR));
}
void ChangeDamageAndGrow()