From a38531121d45c711c47a34efdf2febb74fc760e6 Mon Sep 17 00:00:00 2001 From: megamage Date: Thu, 12 Mar 2009 15:39:13 -0600 Subject: *Fix build. --HG-- branch : trunk --- src/game/SpellEffects.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 433a5e096e9..7915e9491a6 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -2173,7 +2173,7 @@ void Spell::EffectJump(uint32 i) // Init dest coordinates float x,y,z,o; - if(m_targets.m_targetMask & TARGET_FLAG_DEST_LOCATION) + if(m_targets.HasDest()) { x = m_targets.m_destX; y = m_targets.m_destY; @@ -2185,7 +2185,7 @@ void Spell::EffectJump(uint32 i) x = unitTarget->GetPositionX(); y = unitTarget->GetPositionY(); z = unitTarget->GetPositionZ(); - o = m_spellInfo->EffectImplicitTargetA[i] == TARGET_BEHIND_VICTIM + o = m_spellInfo->EffectImplicitTargetA[i] == TARGET_DEST_TARGET_BACK ? unitTarget->GetOrientation() : m_caster->GetOrientation(); } -- cgit v1.2.3