Skip to content

Commit

Permalink
Fix not being able to loot quest items with master loot on.
Browse files Browse the repository at this point in the history
  • Loading branch information
ratkosrb committed Jun 19, 2024
1 parent ee00512 commit fbcbc23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/Handlers/LootHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ void WorldSession::HandleAutostoreLootItemOpcode(WorldPacket& recv_data)
}

// prevent stealing items if using master loot
if (lguid.IsCreature() && !item->is_underthreshold)
if (lguid.IsCreature() && !item->is_underthreshold && !qitem && !ffaitem)
{
if (Group* pGroup = player->GetGroup())
{
Expand Down

0 comments on commit fbcbc23

Please sign in to comment.