Skip to content

Commit 50dd217

Browse files
author
Evan Cobb
committed
Ignores pouches that require a higher character level
1 parent d6ca70e commit 50dd217

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

OpenThosePouches.lua

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ local function IsPouch(container, slot)
8181
end
8282
end
8383

84+
local link = C_Container.GetContainerItemLink(container, slot)
85+
local _, _, _, _, itemMinLevel = C_Item.GetItemInfo(link)
86+
if itemMinLevel ~= nil and itemMinLevel > UnitLevel("player") then
87+
return false
88+
end
89+
8490
return true
8591
end
8692

0 commit comments

Comments
 (0)