OmniCC

OmniCC

54M Downloads

Debuffs' cooldowns are in the 'charging' group

warbaby opened this issue ยท 3 comments

commented

This is why some cc font size is too small.

OmniCC/core/timer.lua:42

self.charging = self.cooldown:GetDrawEdge()

better change to :

self.charging = not self.cooldown:GetDrawSwipe()

commented

this is working, can we add this on the release?

commented

come across this bug since BfA, only happens with ouf unitframe's aura
@warbaby 's solution works

wowscrnshot_080618_152435

commented

This is the rule i'm using in the betas to determine if the cooldown is a charge one or not. It works for standard actions + libactionbutton buttons at the very least.

local parent = cooldown:GetParent()
if parent and parent.chargeCooldown == cooldown then
    return "charge"
end