diff --git a/ElvUI/Modules/Bags/Sort.lua b/ElvUI/Modules/Bags/Sort.lua index 36cc526..875a6aa 100644 --- a/ElvUI/Modules/Bags/Sort.lua +++ b/ElvUI/Modules/Bags/Sort.lua @@ -392,7 +392,7 @@ function B:CanItemGoInBag(bag, slot, targetBag) end local bagFamily = GetItemFamily(targetBag) if itemFamily then - return (bagFamily == 0) or band(itemFamily, bagFamily) > 0 + return (bagFamily == 0) or itemFamily == bagFamily else return false end