mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[8327] Fixed recieved packet size check for MSG_MOVE_TELEPORT_ACK.
This commit is contained in:
parent
06b0e7a444
commit
79c1324bed
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue