File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -4976,6 +4976,9 @@ local mt_default_action = {
4976
4976
elseif k == " disabled" then
4977
4977
return state :IsDisabled ( t .action )
4978
4978
4979
+ elseif k == " clash" then
4980
+ return state .settings .abilities [ t .action ].clash or 0
4981
+
4979
4982
elseif k == " gcd" then
4980
4983
local queued_action = state .this_action
4981
4984
state .this_action = t .action
Original file line number Diff line number Diff line change @@ -832,15 +832,15 @@ ns.Audit = function( special )
832
832
for aura , targets in pairs ( debuffs ) do
833
833
local a = class .auras [ aura ]
834
834
local window = a and a .duration or grace
835
- local expires = a and a . no_ticks or false
836
- local friendly = a and a .friendly or false
835
+ local friendly = a and ( a . friendly or a . dot == " buff " ) or false
836
+ local expires = not ( a and a .no_ticks or friendly )
837
837
838
838
for unit , entry in pairs ( targets ) do
839
839
-- NYI: Check for dot vs. debuff, since debuffs won't 'tick'
840
840
if expires and now - entry .last_seen > window then
841
841
ns .trackDebuff ( aura , unit )
842
842
elseif special == " combatExit" and not friendly then
843
- Hekili :Error ( format ( " Auditor removed an aura %d from %s after exiting combat." , aura , unit ) )
843
+ -- Hekili:Error( format( "Auditor removed an aura %d from %s after exiting combat.", aura, unit ) )
844
844
ns .trackDebuff ( aura , unit )
845
845
end
846
846
end
You can’t perform that action at this time.
0 commit comments