From 54d8411eb950e68f2abee2be9f4491d368e024fe Mon Sep 17 00:00:00 2001 From: thenecromancer Date: Thu, 18 Feb 2010 00:33:09 +0100 Subject: Fix error, should've tested it before :< --HG-- branch : trunk --- src/game/SpellEffects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 585fbbc42af..b7ff7df86df 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -6832,7 +6832,7 @@ void Spell::EffectPlayerPull(uint32 i) speedZ = float(m_spellInfo->EffectMiscValueB[i])/10; else speedZ = 10.0f; - float speedXY = m_caster->GetExactDist2d(x, y) * 10.0f / speedZ; + float speedXY = m_caster->GetExactDist2d(unitTarget) * 10.0f / speedZ; unitTarget->GetMotionMaster()->MoveJump(m_caster->GetPositionX(), m_caster->GetPositionY(), m_caster->GetPositionZ(), speedXY, speedZ); } -- cgit v1.2.3