Skip to content

Commit

Permalink
this should fix remaining wod issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed Apr 13, 2024
1 parent 561e0d1 commit 932004c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion DBM-Raids-WoD/BlackrockFoundry/IronMaidens.lua
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,6 @@ function mod:SPELL_AURA_APPLIED(args)
end
end
end
mod.SPELL_AURA_APPLIED_DOSE = mod.SPELL_AURA_APPLIED

function mod:SPELL_AURA_REMOVED(args)
local spellId = args.spellId
Expand Down
1 change: 0 additions & 1 deletion DBM-Raids-WoD/HellfireCitadel/Iskar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,6 @@ function mod:SPELL_AURA_APPLIED(args)
end
end
end
mod.SPELL_AURA_APPLIED_DOSE = mod.SPELL_AURA_APPLIED

function mod:SPELL_AURA_REMOVED(args)
local spellId = args.spellId
Expand Down
4 changes: 2 additions & 2 deletions DBM-Raids-WoD/HellfireCitadel/Socrethar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ mod:RegisterEventsInCombat(
"UNIT_DIED",
-- "SPELL_PERIODIC_DAMAGE",
-- "SPELL_ABSORBED",
"RAID_BOSS_WHISPER",
"UNIT_SPELLCAST_SUCCEEDED boss1 boss2"
"RAID_BOSS_WHISPER"
-- "UNIT_SPELLCAST_SUCCEEDED boss1 boss2"
)

--TODO, Prisons had no workable targetting of any kind during test. Study of logs and even videos showed no valid target scanning, debuff, whisper, nothing. As such, only aoe warning :\
Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-WoD/Highmaul/Brackenspore.lua
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function mod:SPELL_CAST_START(args)
self.vb.decayCounter = 0
end
self.vb.decayCounter = self.vb.decayCounter + 1
local guid = args.souceGUID
local guid = args.sourceGUID
if guid == UnitGUID("target") or guid == UnitGUID("focus") then
specWarnDecay:Show(args.sourceName, self.vb.decayCounter)
timerDecayCD:Start(args.sourceGUID)
Expand Down
4 changes: 2 additions & 2 deletions DBM-Raids-WoD/Highmaul/Tectus.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function mod:CustomHealthUpdate()
for i = 1, 5 do
local unitID = "boss"..i
local guid = UnitGUID(unitID)
if UnitExists(unitID) then
if guid and UnitExists(unitID) then
local cid = self:GetCIDFromGUID(guid)
if cid == 78948 then
tectusH = UnitHealth(unitID) / UnitHealthMax(unitID) * 100
Expand Down Expand Up @@ -142,7 +142,7 @@ function mod:SPELL_CAST_START(args)
specWarnTectonicUpheaval:Show()
specWarnTectonicUpheaval:Play("aesoon")
elseif spellId == 162968 then
local guid = args.souceGUID
local guid = args.sourceGUID
specWarnEarthenFlechettes:Show()
timerEarthenFlechettesCD:Start(guid)
if guid == UnitGUID("target") or guid == UnitGUID("focus") then
Expand Down

0 comments on commit 932004c

Please sign in to comment.