Skip to content

Commit

Permalink
Removed yells from WoD world bosses, since it's no longer allowed by API
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed Jan 10, 2020
1 parent 3ef75eb commit 7b172d7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
4 changes: 1 addition & 3 deletions DBM-Draenor/Kazzak.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ local warnMark = mod:NewTargetAnnounce(187668, 2)

local specWarnDoom = mod:NewSpecialWarningSpell(187466, nil, nil, nil, 2)
local specWarnMark = mod:NewSpecialWarningYou(187668)
local yellMark = mod:NewYell(187668)

local timerDoomD = mod:NewCDTimer(51, 187466, nil, nil, nil, 3)
local timerBreathCD = mod:NewCDTimer(22, 187664, nil, nil, nil, 5)
Expand Down Expand Up @@ -55,7 +54,6 @@ function mod:SPELL_AURA_APPLIED(args)
warnMark:CombinedShow(0.5, args.destName)
if args:IsPlayer() then
specWarnMark:Show()
yellMark:Yell()
if self.Options.RangeFrame then
DBM.RangeCheck:Show(8)
end
Expand All @@ -79,4 +77,4 @@ function mod:UNIT_SPELLCAST_START(uId, _, spellId)
if spellId == 187664 and self:AntiSpam() then
timerBreathCD:Start()
end
end
end
4 changes: 2 additions & 2 deletions DBM-Draenor/Rukhmar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ mod:RegisterEventsInCombat(
--TODO, timers.
--TODO, health percents feathers/glory happen at. Add warnings if cast detectable too.
--TODO, add warnings for fixates birds do if they fixate.
local warnPiercedArmor = mod:NewStackAnnounce(167615, 3, nil, "Tank|Healer", 2)
local warnPiercedArmor = mod:NewStackAnnounce(167615, 3, nil, "Tank|Healer", 2)

local specWarnLooseQuills = mod:NewSpecialWarningSpell(167647, nil, nil, nil, 2)
local specWarnSolarBreath = mod:NewSpecialWarningSpell(167679, "Tank")
Expand Down Expand Up @@ -75,4 +75,4 @@ function mod:RAID_BOSS_WHISPER(msg)
if msg:find("spell:167630") then
specWarnExplode:Show()
end
end
end
4 changes: 1 addition & 3 deletions DBM-Draenor/Tarlna.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ local warnSavageVines = mod:NewTargetAnnounce(176004, 2)
local specWarnColossalBlow = mod:NewSpecialWarningDodge(175973, nil, nil, nil, 2, 2)
local specWarnGenesis = mod:NewSpecialWarningSpell(175979, nil, nil, nil, nil, 2)--Everyone. "Switch" is closest generic to "run around stomping flowers". Might need custom message
local specWarnSavageVines = mod:NewSpecialWarningYou(176004)
local yellSavageVines = mod:NewYell(176004)
local specWarnSavageVinesNear = mod:NewSpecialWarningClose(176004)
local specWarnGrowUntamedMandragora = mod:NewSpecialWarningSwitch(176013, "-Healer", nil, nil, nil, 2)
local specWarnNoxiousSpit = mod:NewSpecialWarningMove(176037)
Expand Down Expand Up @@ -90,7 +89,6 @@ function mod:SPELL_AURA_APPLIED(args)
warnSavageVines:CombinedShow(0.5, targetName)
if args:IsPlayer() then
specWarnSavageVines:Show()
yellSavageVines:Yell()
else
if self:CheckNearby(8, targetName) then
specWarnSavageVinesNear:Show(targetName)
Expand All @@ -112,4 +110,4 @@ function mod:SPELL_PERIODIC_DAMAGE(_, _, _, _, destGUID)-- only listen personal
specWarnNoxiousSpit:Show()
end
end
mod.SPELL_ABSORBED = mod.SPELL_PERIODIC_DAMAGE
mod.SPELL_ABSORBED = mod.SPELL_PERIODIC_DAMAGE

0 comments on commit 7b172d7

Please sign in to comment.