mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-01 06:37:12 +01:00
Core/LFG: Fix being unable to re-queue after leaving queue
(cherry picked from commit c2a69e748e)
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user