Skip to content

Commit

Permalink
Try to fix aura listeners not working in certain instances
Browse files Browse the repository at this point in the history
  • Loading branch information
brittyazel committed Dec 24, 2023
1 parent 5ff6af6 commit ba10c44
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Modules/AuraListeners.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ end
--- Creates a listener for the UNIT_AURA event attached to a specified raid frame
---@param frame table @The raid frame to create the listener for
function EnhancedRaidFrames:CreateAuraListener(frame)
-- Check if we should continue and if we don't already have a listener frame
-- Skip the visibility check in ShouldContinue() as we need the listener to exist even if the frame is hidden
if frame.ERF_auraListenerFrame or not self.ShouldContinue(frame, true) then
if not self.ShouldContinue(frame, true) then
return
end

Expand Down

0 comments on commit ba10c44

Please sign in to comment.