[8601] Fixed some movement *_ACK packets structure after switch.

This commit is contained in:
VladimirMangos 2009-10-08 15:59:54 +04:00
parent 49c52ddf9c
commit 308439a335
4 changed files with 21 additions and 10 deletions

View file

@ -345,8 +345,10 @@ void WorldSession::HandleCastSpellOpcode(WorldPacket& recvPacket)
if(unk1)
{
recvPacket.read_skip<uint32>(); // >> MSG_MOVE_STOP
uint64 guid;
recvPacket.readPackGUID(guid);
uint64 guid; // guid - unused
if(!recvPacket.readPackGUID(guid))
return;
MovementInfo movementInfo;
ReadMovementInfo(recvPacket, &movementInfo);
}