[8327] Fixed recieved packet size check for MSG_MOVE_TELEPORT_ACK.

This commit is contained in:
VladimirMangos 2009-08-08 06:39:01 +04:00
parent 06b0e7a444
commit 79c1324bed
2 changed files with 2 additions and 2 deletions

View file

@ -160,7 +160,7 @@ void WorldSession::HandleMoveWorldportAckOpcode()
void WorldSession::HandleMoveTeleportAck(WorldPacket& recv_data) void WorldSession::HandleMoveTeleportAck(WorldPacket& recv_data)
{ {
CHECK_PACKET_SIZE(recv_data, 8+4); CHECK_PACKET_SIZE(recv_data, 8+4+4);
sLog.outDebug("MSG_MOVE_TELEPORT_ACK"); sLog.outDebug("MSG_MOVE_TELEPORT_ACK");
uint64 guid; uint64 guid;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "8326" #define REVISION_NR "8327"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__