diff --git a/src/server/game/Groups/Group.cpp b/src/server/game/Groups/Group.cpp index 6f45ac4ab..23470aded 100644 --- a/src/server/game/Groups/Group.cpp +++ b/src/server/game/Groups/Group.cpp @@ -997,7 +997,7 @@ bool CanRollOnItem(LootItem const& item, Player const* player, Loot* loot) if (!proto) return false; - uint32 itemCount = player->GetItemCount(item.itemid); + uint32 itemCount = player->GetItemCount(item.itemid, true); if ((proto->MaxCount > 0 && static_cast(itemCount) >= proto->MaxCount)) return false;