broizter / DBM-Whitemane

DBM for Whitemane (Frostmourne)
https://github.com/broizter/DBM-Whitemane
8 stars 2 forks source link

Unbalancing strike timer on Thorim not showing #6

Closed ottovonwulffen closed 3 months ago

ottovonwulffen commented 3 months ago

The countdown timer for unbalancing strike on hodir is not showing up, even when tanking. There seems to be something off with

local timerUnbalancingStrike = mod:NewCDTimer(25.6, 62130, nil, "Tank", nil, 5, nil, DBM_CORE_L.TANK_ICON)

Because the other portion of it - the warning for when it's applied to the other tank to taunt the boss, is working. I.e., this:

elseif spellId == 62130 then                -- Unbalancing Strike
    if args:IsPlayer() then
        specWarnUnbalancingStrikeSelf:Show()
        specWarnUnbalancingStrikeSelf:Play("defensive")
    else
        specWarnUnbalancingStrike:Show(args.destName)
        specWarnUnbalancingStrike:Play("tauntboss")
    end
broizter commented 3 months ago

The timer is disabled by default. Did you enable it? bild

ottovonwulffen commented 3 months ago

Ah I'm an idiot, didn't think to check this, thought it would be enabled by default for tanks. Thanks for the quick reply and sorry for the bogus bug report!

broizter commented 3 months ago

Don't worry about it. I think it was a fair assumption it would enabled by default and you described the issue you were having well.