Skip to content

Commit

Permalink
Change specWarnEntomophobia to only warn at 4 stacks and above, up fr…
Browse files Browse the repository at this point in the history
…om 3. This should reduce overall annoyance of warning. It's still an important warning but if the warning is making me cuss more than the actual mechanic, it needed adjustment.
  • Loading branch information
MysticalOS committed May 12, 2020
1 parent 64031c0 commit 667201f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DBM-Challenges/BfA/NzothVisionOrgrimmar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ function mod:SPELL_AURA_APPLIED(args)
local spellId = args.spellId
if spellId == 311390 and args:IsPlayer() then
local amount = args.amount or 1
if amount >= 3 then
if amount >= 4 then
specWarnEntomophobia:Show()
specWarnEntomophobia:Play("keepjump")
end
Expand Down
2 changes: 1 addition & 1 deletion DBM-Challenges/BfA/NzothVisionStormwind.lua
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ function mod:SPELL_AURA_APPLIED(args)
local spellId = args.spellId
if spellId == 311390 and args:IsPlayer() then
local amount = args.amount or 1
if amount >= 3 then
if amount >= 4 then
specWarnEntomophobia:Show()
specWarnEntomophobia:Play("keepjump")
end
Expand Down

0 comments on commit 667201f

Please sign in to comment.