diff options
author | megamage <none@none> | 2009-03-23 15:25:20 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-23 15:25:20 -0600 |
commit | 71bcdec848661f93f34e958f535041964b6f01de (patch) | |
tree | f10ec5887f7114df44077ddf46ec75222379de72 /src | |
parent | 380cffe5bf50e896699c502af9bcd8b70f34f412 (diff) |
*Fix a typo in knockback effect.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 750130984eb..2df17636ad9 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -5720,7 +5720,7 @@ void Spell::EffectKnockBack(uint32 i) else { x = m_caster->GetPositionX(); - y = m_caster->GetPositionX(); + y = m_caster->GetPositionY(); } float dx = unitTarget->GetPositionX() - x; |