diff options
| author | Subv <s.v.h21@hotmail.com> | 2012-08-25 14:32:52 -0500 |
|---|---|---|
| committer | Subv <s.v.h21@hotmail.com> | 2012-08-25 14:32:52 -0500 |
| commit | f0473777e2751ce53790d5b2628f00c287540691 (patch) | |
| tree | baac3e69e4465a881ef1b85b648f2b0442717747 /src | |
| parent | c44601379179ad368bb2c80d371232c48f366f90 (diff) | |
Core/Mmaps: Fixed jump effects (like Death Grip ). They should not use a path
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/game/Movement/MotionMaster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Movement/MotionMaster.cpp b/src/server/game/Movement/MotionMaster.cpp index dd053534c8a..07d3760cf40 100644 --- a/src/server/game/Movement/MotionMaster.cpp +++ b/src/server/game/Movement/MotionMaster.cpp @@ -370,7 +370,7 @@ void MotionMaster::MoveJump(float x, float y, float z, float speedXY, float spee float max_height = -Movement::computeFallElevation(moveTimeHalf,false,-speedZ); Movement::MoveSplineInit init(*_owner); - init.MoveTo(x,y,z); + init.MoveTo(x, y, z, false); init.SetParabolic(max_height,0); init.SetVelocity(speedXY); init.Launch(); |
