I'm trying to change the height of the tick mark on this wa:
I found where I think it is being set in "Actions": https://wago.io/oEqn9LJVQ
aura_env.flurry_time = time()
aura_env.comet_storm_time = time()
if not aura_env.tickMark then
local bar = aura_env.region.bar
local tickMark = bar:CreateTexture()
tickMark:SetDrawLayer("OVERLAY", 7)
tickMark:SetColorTexture(0, 0, 0)
tickMark:SetSize(1, 18)
tickMark:SetPoint("CENTER",bar,"CENTER")
aura_env.tickMark = tickMark
end
But changing that 18 to another value isn't working...