Skip to content

Commit

Permalink
Fix issues reported in #42
Browse files Browse the repository at this point in the history
Also added staging API to RoS as well
  • Loading branch information
MysticalOS committed Dec 29, 2023
1 parent 6eb3abe commit 17b1d03
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions DBM-Raids-BC/BlackTemple/EssenceOfSouls.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ mod:AddSetIconOption("SpiteIcon", 41376, false, 6)
mod.vb.lastFixate = "None"

function mod:OnCombatStart(delay)
self:SetStage(1)
self.vb.lastFixate = "None"
timerNextFrenzy:Start(49-delay)
warnFrenzySoon:Schedule(44-delay)
Expand All @@ -92,12 +93,14 @@ end

function mod:SPELL_CAST_SUCCESS(args)
if args.spellId == 41350 then --Aura of Desire
self:SetStage(2)
warnPhase2:Show()
warnMana:Schedule(130)
timerMana:Start()
timerNextShield:Start(13)
timerNextDeaden:Start(28)
timerNextShield:Start(12.1)
timerNextDeaden:Start(26.7)
elseif args.spellId == 41337 then --Aura of Anger
self:SetStage(3)
warnPhase3:Show()
timerNextSoul:Start()
elseif args.spellId == 41431 then
Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-BC/BlackTemple/TeronGorefiend.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ local specWarnDeath = mod:NewSpecialWarningYou(40251, nil, nil, nil, 1, 2)
local specWarnDeathEnding = mod:NewSpecialWarningMoveAway(40251, nil, nil, nil, 3, 2)

local timerCrushed = mod:NewBuffActiveTimer(15, 40243, nil, "Healer", 2, 5, nil, DBM_COMMON_L.HEALER_ICON)
local timerDeathCD = mod:NewCDTimer(32, 40251, nil, nil, nil, 3)--32-40 (small sample size, could be bigger range)
local timerDeathCD = mod:NewCDTimer(26.7, 40251, nil, nil, nil, 3)--32-40 (small sample size, could be bigger range)
local timerDeath = mod:NewTargetTimer(55, 40251, nil, nil, nil, 3)
local timerVengefulSpirit = mod:NewTimer(60, "TimerVengefulSpirit", 40325, nil, nil, 1)

Expand Down

0 comments on commit 17b1d03

Please sign in to comment.