Skip to content

Commit

Permalink
panel: add support for stackable soulshards count
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgibson1981 authored Jan 22, 2025
1 parent 81f34bd commit 03a2ed6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/panel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,8 @@ pfUI:RegisterModule("panel", "vanilla:tbc", function()
if link then
local _, _, id = string.find(link, "item:(%d+):%d+:%d+:%d+")
if id == "6265" then
count = count + 1
local _, itemCount = GetContainerItemInfo(bag,slot)
count = count + itemCount
end
end
end
Expand Down

0 comments on commit 03a2ed6

Please sign in to comment.