mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/LFG: Fix being unable to re-queue after leaving queue
This commit is contained in:
@@ -71,7 +71,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);
|
||||
}
|
||||
|
||||
recvData.read_skip<uint32>(); // for 0..uint8 (always 3) { uint8 (always 0) }
|
||||
|
||||
Reference in New Issue
Block a user