Skip to content
This repository has been archived by the owner on Apr 30, 2022. It is now read-only.

Commit

Permalink
fix(Naxx25/Horsemen/Kel'thuzad): Fix range check from 10 yd to 12 yd (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Exeasd committed Nov 7, 2021
1 parent 6a6ee7f commit a7aee7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DBM-Naxx/FrostwyrmLair/Kel'Thuzad.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function mod:OnCombatStart(delay)
specwarnP2Soon:Schedule(215-delay)
timerPhase2:Start()
warnPhase2:Schedule(225)
self:Schedule(225, DBM.RangeCheck.Show, DBM.RangeCheck, 10)
self:Schedule(225, DBM.RangeCheck.Show, DBM.RangeCheck, 12)
end

function mod:OnCombatEnd()
Expand Down Expand Up @@ -103,7 +103,7 @@ end

function mod:RangeToggle(show)
if show then
DBM.RangeCheck:Show(10)
DBM.RangeCheck:Show(12)
else
DBM.RangeCheck:Hide()
end
Expand Down
2 changes: 1 addition & 1 deletion DBM-Naxx/MilitaryQuarter/Horsemen.lua
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ end

function mod:RangeToggle(show)
if show then
DBM.RangeCheck:Show(10)
DBM.RangeCheck:Show(12)
else
DBM.RangeCheck:Hide()
end
Expand Down

0 comments on commit a7aee7c

Please sign in to comment.