mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[11070] Correct meaning of one field in MSG_MOVE_TELEPORT_ACK packet
This commit is contained in:
parent
5951d77a0d
commit
c9fc5727fc
2 changed files with 4 additions and 4 deletions
|
|
@ -219,10 +219,10 @@ void WorldSession::HandleMoveTeleportAckOpcode(WorldPacket& recv_data)
|
||||||
|
|
||||||
recv_data >> guid.ReadAsPacked();
|
recv_data >> guid.ReadAsPacked();
|
||||||
|
|
||||||
uint32 flags, time;
|
uint32 counter, time;
|
||||||
recv_data >> flags >> time;
|
recv_data >> counter >> time;
|
||||||
DEBUG_LOG("Guid: %s", guid.GetString().c_str());
|
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();
|
Unit *mover = _player->GetMover();
|
||||||
Player *plMover = mover->GetTypeId() == TYPEID_PLAYER ? (Player*)mover : NULL;
|
Player *plMover = mover->GetTypeId() == TYPEID_PLAYER ? (Player*)mover : NULL;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11069"
|
#define REVISION_NR "11070"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue