[11070] Correct meaning of one field in MSG_MOVE_TELEPORT_ACK packet

This commit is contained in:
zergtmn 2011-01-25 22:45:28 +05:00
parent 5951d77a0d
commit c9fc5727fc
2 changed files with 4 additions and 4 deletions

View file

@ -219,10 +219,10 @@ void WorldSession::HandleMoveTeleportAckOpcode(WorldPacket& recv_data)
recv_data >> guid.ReadAsPacked();
uint32 flags, time;
recv_data >> flags >> time;
uint32 counter, time;
recv_data >> counter >> time;
DEBUG_LOG("Guid: %s", guid.GetString().c_str());
DEBUG_LOG("Flags %u, time %u", flags, time/IN_MILLISECONDS);
DEBUG_LOG("Counter %u, time %u", counter, time/IN_MILLISECONDS);
Unit *mover = _player->GetMover();
Player *plMover = mover->GetTypeId() == TYPEID_PLAYER ? (Player*)mover : NULL;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11069"
#define REVISION_NR "11070"
#endif // __REVISION_NR_H__