Skip to content

Commit

Permalink
Fix some erorrs
Browse files Browse the repository at this point in the history
apparently my new tooling is still fucked up. was supposed to preventme constantly pushing broken stuff, but apparently it didn't, back to drawing board.
  • Loading branch information
MysticalOS committed Apr 14, 2024
1 parent 4ee1140 commit b949f47
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions DBM-Raids-MoP/MogushanVaults/Feng.lua
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ mod.vb.specialCount = 0
local arcaneResonanceTargets = {}
local nullBarrier = DBM:GetSpellInfo(115811)

local function warnWildfire()
local function warnWildfire(self)
warnWildfireInfusion:Cancel()
warnWildfireInfusion:Schedule(1, L.name, wildfireCount)
warnWildfireInfusion:Schedule(1, L.name, self.vb.wildfireCount)
end

local function warnArcaneResonanceTargets()
Expand Down Expand Up @@ -179,7 +179,7 @@ function mod:SPELL_AURA_APPLIED(args)
end
elseif spellId == 116821 then
self.vb.wildfireCount = 1
warnWildfire()
warnWildfire(self)
elseif spellId == 116417 then
arcaneResonanceTargets[#arcaneResonanceTargets + 1] = args.destName
if self.Options.SetIconOnAR then
Expand Down Expand Up @@ -262,7 +262,7 @@ function mod:SPELL_AURA_APPLIED_DOSE(args)
end
elseif spellId == 116821 then
self.vb.wildfireCount = amount
warnWildfire()
warnWildfire(self)
end
end

Expand Down Expand Up @@ -317,7 +317,6 @@ function mod:SPELL_CAST_SUCCESS(args)
warnChainsOfShadow:Show()
timerChainsOfShadowCD:Start()
elseif spellId == 115817 then
warnNullBarrier:Show()
specWarnNullBarrier:Show()
specWarnNullBarrier:Play("findsheild")
timerNullBarrier:Start()
Expand Down

0 comments on commit b949f47

Please sign in to comment.