Skip to content

Commit

Permalink
Update ToC for Classic Era
Browse files Browse the repository at this point in the history
  • Loading branch information
brittyazel committed Dec 2, 2023
1 parent baad3c0 commit 0074417
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion EnhancedRaidFrames.lua
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ function EnhancedRaidFrames:OnEnable()
-- Hook our UpdateStockIndicatorVisibility function onto internal functions.
-- We use SecureHook() because the default function is protected, and we want to make sure our code runs after the default code.
self:SecureHook("CompactUnitFrame_UpdateAuras", function(frame) self:UpdateStockIndicatorVisibility(frame) end)
self:SecureHook("CompactUnitFrame_UpdatePrivateAuras", function(frame) self:UpdateStockIndicatorVisibility(frame) end)
if not self.isWoWClassicEra and not self.isWoWClassic then
self:SecureHook("CompactUnitFrame_UpdatePrivateAuras", function(frame) self:UpdateStockIndicatorVisibility(frame) end)
end

-- Hook our UpdateInRange function to the default CompactUnitFrame_UpdateInRange function.
self:SecureHook("CompactUnitFrame_UpdateInRange", function(frame) self:UpdateInRange(frame) end)
Expand Down
2 changes: 1 addition & 1 deletion EnhancedRaidFrames.toc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Interface: 100200
## Interface-Classic: 11404
## Interface-Classic: 11500
## Interface-Wrath: 30403
## Title: Enhanced Raid Frames
## Notes: Enhances the Blizzard raid frames with configurable Buff/Debuff indicators
Expand Down

0 comments on commit 0074417

Please sign in to comment.