Skip to content

Commit

Permalink
Fix bad icon on pillar announce on bladefist
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed Apr 22, 2024
1 parent 9f80b50 commit 114bf86
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DBM-Raids-WoD/HellfireCitadel/Mannoroth.lua
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ function mod:SPELL_CAST_START(args)
end
elseif spellId == 183376 or spellId == 185830 then
local targetName, uId, bossuid = self:GetBossTarget(91349, true)
local tanking, status = UnitDetailedThreatSituation("player", bossuid)
local tanking, status = UnitDetailedThreatSituation("player", bossuid or "")
if tanking or (status == 3) then--Player is current target
else
if self:GetNumAliveTanks() >= 3 and not self:CheckNearby(21, targetName) then return end--You are not near current tank, you're probably 3rd tank on Doom Guards that never taunts massive blast
Expand Down
1 change: 1 addition & 0 deletions DBM-Raids-WoD/HellfireCitadel/Zakuun.lua
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ local function warnSeeds(self)
yellSeeds2:Yell(currentType[i], i, i)
end
if currentVoice and currentVoice[i] then
---@diagnostic disable-next-line: param-type-mismatch
specWarnSeedPosition:Play(currentVoice[i])
end
end
Expand Down
2 changes: 1 addition & 1 deletion DBM-Raids-WoD/Highmaul/KargathBladefist.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ mod:RegisterEventsInCombat(

local warnChainHurl = mod:NewTargetAnnounce(159947, 3)--Warn for cast too?
local warnOpenWounds = mod:NewStackAnnounce(159178, 2, nil, "Tank|Healer")
local warnPillar = mod:NewSpellAnnounce("ej9394", 3, nil, 159202, nil, nil, nil, 2)
local warnPillar = mod:NewSpellAnnounce("ej9394", 3, 159202, nil, nil, nil, nil, 2)
local warnOnTheHunt = mod:NewTargetAnnounce(162497, 4)

local specWarnChainHurl = mod:NewSpecialWarningSpell(159947, nil, nil, nil, nil, 12)
Expand Down

0 comments on commit 114bf86

Please sign in to comment.