Core/LFG: Fix being unable to re-queue after leaving queue

(cherry picked from commit c2a69e748e)
This commit is contained in:
jackpoz
2014-11-08 22:52:09 +01:00
parent 6a2fc7c043
commit 6c1ca104ed

View File

@@ -115,7 +115,9 @@ void WorldSession::HandleLfgJoinOpcode(WorldPacket& recvData)
{
uint32 dungeon;
recvData >> dungeon;
newDungeons.insert((dungeon & 0x00FFFFFF)); // remove the type from the dungeon entry
dungeon &= 0x00FFFFFF; // remove the type from the dungeon entry
if (dungeon)
newDungeons.insert(dungeon);
}
TC_LOG_DEBUG("lfg", "CMSG_LFG_JOIN %s roles: %u, Dungeons: %u, Comment: %s",