aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Groups/Group.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Groups/Group.cpp b/src/server/game/Groups/Group.cpp
index 4fa1ce16d7c..2913b415618 100644
--- a/src/server/game/Groups/Group.cpp
+++ b/src/server/game/Groups/Group.cpp
@@ -1020,7 +1020,7 @@ bool CanRollOnItem(const LootItem& item, Player const* player)
if (!proto)
return false;
- uint32 itemCount = player->GetItemCount(item.itemid);
+ uint32 itemCount = player->GetItemCount(item.itemid, true);
if (proto->MaxCount > 0 && static_cast<int32>(itemCount) >= proto->MaxCount)
return false;