View Single Post
04-11-13, 04:54 PM   #2
Rainrider
A Firelord
AddOn Author - Click to view addons
Join Date: Nov 2008
Posts: 454
You could use auras.CustomFilter to do this.

Code:
auras.CustomFilter = function(_, _, aura, _, _, _, _, _, duration)
	if (aura.isDebuff) then
		return true
	else
		if (duration <= 60 and duration > 0) then
			return true
		end
	end
end
This won't work if you mean timeLeft btw.

Last edited by Rainrider : 04-11-13 at 04:56 PM.
  Reply With Quote