Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing test diffs: Random changes to C'Thun #295

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions DBM-Raids-Vanilla/AQ40/CThun.lua
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function mod:OnCombatStart(delay)
timerClawTentacle:Start(9-delay) -- Combatlog told me, the first Claw Tentacle spawn in 00:00:09, but need more test.
timerEyeTentacle:Start(45-delay)
timerDarkGlareCD:Start(48-delay)
self:ScheduleMethod(48-delay, "DarkGlare")
self:ScheduleMethod(45-delay, "DarkGlare")
if self.Options.RangeFrame then
DBM.RangeCheck:Show(10)
end
Expand Down Expand Up @@ -166,7 +166,7 @@ function mod:SPELL_CAST_SUCCESS(args)
timerEyeTentacle:Stop()
warnEyeTentacle:Show()
timerEyeTentacle:Start(self:GetStage(2) and 30 or 45)
elseif cid == 15725 then -- Claw Tentacle
elseif cid == 15724 then -- Claw Tentacle
timerClawTentacle:Stop()
warnClawTentacle:Show()
timerClawTentacle:Start()
Expand Down Expand Up @@ -254,3 +254,4 @@ function mod:OnSync(msg)
end
end
end

Loading