diff --git a/src/game/MovementHandler.cpp b/src/game/MovementHandler.cpp index 76d6545be..0786fffdd 100644 --- a/src/game/MovementHandler.cpp +++ b/src/game/MovementHandler.cpp @@ -248,8 +248,8 @@ void WorldSession::HandleMovementOpcodes( WorldPacket & recv_data ) if (movementInfo.HasMovementFlag(MOVEMENTFLAG_ONTRANSPORT)) { // transports size limited - // (also received at zeppelin leave by some reason with t_* as absolute in continent coordinates, can be safely skipped) - if( movementInfo.t_x > 50 || movementInfo.t_y > 50 || movementInfo.t_z > 50 ) + // (also received at zeppelin/lift leave by some reason with t_* as absolute in continent coordinates, can be safely skipped) + if( movementInfo.t_x > 50 || movementInfo.t_y > 50 || movementInfo.t_z > 100 ) { recv_data.rpos(recv_data.wpos()); // prevent warnings spam return; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 484ab59e1..1b26cb5b6 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8973" + #define REVISION_NR "8974" #endif // __REVISION_NR_H__