Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
kodewdle committed Oct 27, 2024
1 parent 5f699f7 commit a3346e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ElvUI/Core/Modules/Nameplates/StyleFilter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1435,8 +1435,8 @@ function NP:StyleFilterConfigure()

if NP.db.filters then
for filterName, filter in pairs(E.global.nameplates.filters) do
local t = filter.triggers
if t and NP.db.filters[filterName] and NP.db.filters[filterName].triggers and NP.db.filters[filterName].triggers.enable then
local t, db = filter.triggers, NP.db.filters[filterName]
if t and db and db.triggers and db.triggers.enable then
tinsert(list, {filterName, t.priority or 1})

-- NOTE: 0 for fake events
Expand Down

0 comments on commit a3346e1

Please sign in to comment.