Core/PacketIO: Fixed DFProposalResponse packet reading (#22114)

This commit is contained in:
Traesh
2018-07-03 23:01:45 +02:00
committed by Shauren
parent c2d61e05cf
commit 08787f57dc

View File

@@ -37,7 +37,7 @@ void WorldPackets::LFG::DFProposalResponse::Read()
{
_worldPacket >> Ticket;
_worldPacket >> InstanceID;
_worldPacket >> InstanceID;
_worldPacket >> ProposalID;
Accepted = _worldPacket.ReadBit();
}