Skip to content

Commit 4d7c862

Browse files
committed
#1729 dont show button in combat lockdown
1 parent ac4df38 commit 4d7c862

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

GSE/API/Storage.lua

+3-1
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,9 @@ function GSE.UpdateIcon(self, reseticon)
606606
end
607607
else
608608
if _G[k] then
609-
_G[k]:Show()
609+
if not InCombatLockdown() then
610+
_G[k]:Show()
611+
end
610612
_G[k].icon:SetTexture(spellinfo.iconID)
611613
_G[k].icon:Show()
612614
-- _G[k].TextOverlayContainer.Count:SetText(gsebutton)

0 commit comments

Comments
 (0)