Omnicd or Tidyplates: remove the icon timer

Anyone know how to get rid of one of these two timers on my debuff? idk if it would be OmniCD or Tidyplates, but doesn’t look like any setting in Tidyplates.

h ttps://i.imgur.com/x6GO6aC.png

Closest solution I could find was here (he’s asking the exact same thing), but when I go to that .LUA file, I can’t find that line with search, even if I literally count the lines xD (in notepad).

h ttps://github.com/Binbwen/tidyplates/issues/4

1 Like

I’m assuming its now this on line 175 self.TimeLeft:SetText(floor(timeleft)). If you wanted to completely nix all numbers from tidyplates itself, you could proably replace the whole function with just self.TimeLeft:SetText("") from line 169

function AuraIcon:UpdateTime()
	if self.aura.expiration == 0 then
		self.TimeLeft:SetText("")
	else
		local timeleft = self.aura.expiration - GetTime()
		if timeleft > 60 then
			self.TimeLeft:SetText(floor(timeleft/60).."m")
		else
			self.TimeLeft:SetText(floor(timeleft))
		end
	end
end

to

function AuraIcon:UpdateTime()
	self.TimeLeft:SetText("")
end
1 Like

This was the solution I was looking for! Thanks a lot!
I give you forum gold :coin: