diff options
author | tartalo <none@none> | 2009-11-02 21:05:54 +0100 |
---|---|---|
committer | tartalo <none@none> | 2009-11-02 21:05:54 +0100 |
commit | bcfff09c74ec3e7cc6bd4c42938701c501f3bfd7 (patch) | |
tree | 18140ff9d2ec1dfa1d56424a704242be793e2d7d /src/game/MovementHandler.cpp | |
parent | ae2a36d13e32e7aae945c8cc1862b340f4669744 (diff) |
*Implementation of 'No Fly Zone' (Dalaran and Wintergrasp), by Spp
--HG--
branch : trunk
Diffstat (limited to 'src/game/MovementHandler.cpp')
-rw-r--r-- | src/game/MovementHandler.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/MovementHandler.cpp b/src/game/MovementHandler.cpp index 02a41d43923..69583263015 100644 --- a/src/game/MovementHandler.cpp +++ b/src/game/MovementHandler.cpp @@ -307,7 +307,10 @@ void WorldSession::HandleMovementOpcodes( WorldPacket & recv_data ) // fall damage generation (ignore in flight case that can be triggered also at lags in moment teleportation to another map). if (opcode == MSG_MOVE_FALL_LAND && plMover && !plMover->isInFlight()) + { plMover->HandleFall(movementInfo); + _player->RemoveAurasByType(SPELL_AURA_FEATHER_FALL); + } if (plMover && ((movementInfo.flags & MOVEMENTFLAG_SWIMMING) != 0) != plMover->IsInWater()) { |