Skip to content

Commit

Permalink
Ulduar-Thorim: increase range frame to 10y
Browse files Browse the repository at this point in the history
Apparently, Chain Lightning will hit players farther than 8y, so apply 10y radius to be on the safe side.
  • Loading branch information
Zidras committed Jan 18, 2025
1 parent bee0709 commit 9b6cb87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DBM-Ulduar/Thorim.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local mod = DBM:NewMod("Thorim", "DBM-Ulduar")
local L = mod:GetLocalizedStrings()

mod:SetRevision("20230927234351")
mod:SetRevision("20250118120844")
mod:SetCreatureID(32865)
mod:SetUsedIcons(7)
mod:SetHotfixNoticeRev(20230927000000)
Expand All @@ -21,7 +21,7 @@ mod:RegisterEventsInCombat(
-- General
local enrageTimerStage1 = mod:NewBerserkTimer(300, nil, DBM_CORE_L.GENERIC_TIMER_BERSERK..": "..DBM_CORE_L.SCENARIO_STAGE:format(1)) -- REVIEW! Need log to validate, only used Wowhead as reference
local enrageTimerStage2 = mod:NewBerserkTimer(300, nil, DBM_CORE_L.GENERIC_TIMER_BERSERK..": "..DBM_CORE_L.SCENARIO_STAGE:format(2)) -- REVIEW! Need log to validate, only used Wowhead as reference
mod:AddRangeFrameOption("8")
mod:AddRangeFrameOption("10")

-- Stage One
mod:AddTimerLine(DBM_CORE_L.SCENARIO_STAGE:format(1))
Expand Down Expand Up @@ -74,7 +74,7 @@ function mod:OnCombatStart()
enrageTimerStage1:Start()
timerStormhammerCD:Start(40) -- ~8s variance [40.0-48.1]. SCS: 25m Lordaeron [2022-07-31]@[19:31:40] || 25 Lordaeron [2022-09-07]@[20:23:07]) - pull:40.0 || pull:48.1
if self.Options.RangeFrame then
DBM.RangeCheck:Show(8)
DBM.RangeCheck:Show(10)
end
table.wipe(lastcharge)
end
Expand Down

0 comments on commit 9b6cb87

Please sign in to comment.