Skip to content

Commit

Permalink
Fixed one case of useless arg
Browse files Browse the repository at this point in the history
fixed one case of missing count
  • Loading branch information
MysticalOS committed Jul 14, 2024
1 parent b09904a commit e4f99c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DBM-Challenges/Legion/DPSFelTotem.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ end
function mod:SPELL_CAST_SUCCESS(args)
local spellId = args.spellId
if spellId == 237950 then
specWarnEarthquake:Show(args.sourceName)
specWarnEarthquake:Show()
specWarnEarthquake:Play("aesoon")
timerEarthquakeCD:Start()
elseif spellId == 242730 then
Expand Down
2 changes: 1 addition & 1 deletion DBM-Challenges/Shadowlands/PoA_CravenCorinth.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ mod:RegisterEventsInCombat(

local warnFansCasts = mod:NewCountAnnounce(341868, 2)

local specWarnFansofDesolation = mod:NewSpecialWarningDodge(341868, nil, nil, nil, 2, 2)
local specWarnFansofDesolation = mod:NewSpecialWarningDodgeCount(341868, nil, nil, nil, 2, 2)
local specWarnConsume = mod:NewSpecialWarningSwitch(337924, nil, nil, nil, 1, 2)

local timerFansofDesolationCD = mod:NewCDTimer(55.8, 341868, nil, nil, nil, 3)
Expand Down

0 comments on commit e4f99c2

Please sign in to comment.