From 667201f61f17a0f9761144335bbf1e460855303b Mon Sep 17 00:00:00 2001 From: MysticalOS Date: Tue, 12 May 2020 16:15:39 -0400 Subject: [PATCH] Change specWarnEntomophobia to only warn at 4 stacks and above, up from 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. --- DBM-Challenges/BfA/NzothVisionOrgrimmar.lua | 2 +- DBM-Challenges/BfA/NzothVisionStormwind.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DBM-Challenges/BfA/NzothVisionOrgrimmar.lua b/DBM-Challenges/BfA/NzothVisionOrgrimmar.lua index af817e9..d4cbdff 100644 --- a/DBM-Challenges/BfA/NzothVisionOrgrimmar.lua +++ b/DBM-Challenges/BfA/NzothVisionOrgrimmar.lua @@ -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 diff --git a/DBM-Challenges/BfA/NzothVisionStormwind.lua b/DBM-Challenges/BfA/NzothVisionStormwind.lua index d71f993..1760853 100644 --- a/DBM-Challenges/BfA/NzothVisionStormwind.lua +++ b/DBM-Challenges/BfA/NzothVisionStormwind.lua @@ -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