mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-22 15:46:56 +00:00
bags: only update cooldown if frame exists
This commit is contained in:
+3
-1
@@ -82,7 +82,9 @@ pfUI:RegisterModule("bags", function ()
|
||||
if bag == -2 and pfUI.bag.showKeyring == true then bagsize = GetKeyRingSize() end
|
||||
for slot=1, bagsize do
|
||||
if pfUI.bags[bag].slots[slot].frame.hasItem then
|
||||
ContainerFrame_UpdateCooldown(bag, pfUI.bags[bag].slots[slot].frame)
|
||||
if _G[pfUI.bags[bag].slots[slot].frame:GetName() .. "Cooldown"] then
|
||||
ContainerFrame_UpdateCooldown(bag, pfUI.bags[bag].slots[slot].frame)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user