aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/server/game/Spells/Spell.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/server/game/Spells/Spell.cpp b/src/server/game/Spells/Spell.cpp
index 7c578a39355..fda186f9c64 100755
--- a/src/server/game/Spells/Spell.cpp
+++ b/src/server/game/Spells/Spell.cpp
@@ -3481,6 +3481,14 @@ void Spell::update(uint32 difftime)
{
if (m_timer > 0)
{
+ // Cancel the cast if the target is not in line of sight
+ if (m_targets.GetUnitTarget() && !m_caster->IsWithinLOSInMap(m_targets.GetUnitTarget()))
+ {
+ SendCastResult(SPELL_FAILED_LINE_OF_SIGHT);
+ cancel();
+ return;
+ }
+
if (difftime >= (uint32)m_timer)
m_timer = 0;
else