Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Jun 22, 2024
1 parent 2c0efb1 commit 4e42a36
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions AQ40/Cthun.lua
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ do
function mod:CThunWeakened()
deaths = 0
healthList = {}
self:Message("weakened", "green", CL.duration:format(CL.weakened, 45), L.weakened_icon)
self:Bar("weakened", 45, L.weakened, L.weakened_icon)
self:Message("weakened", "green", CL.weakened, L.weakened_icon)
self:Bar("weakened", 45, CL.weakened, L.weakened_icon)

self:Bar("giant_claw_tentacle", 51, L.giant_claw_tentacle, L.giant_claw_tentacle_icon)
self:Bar("eye_tentacles", 81, L.eye_tentacles, L.eye_tentacles_icon)
Expand Down
2 changes: 1 addition & 1 deletion AQ40/Trash.lua
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ do
end
function mod:DetectMagicApplied(args)
if args.destGUID == self:UnitGUID("target") then
self:SimpleTimer(function() self:CheckTarget() end, 0.01) -- Combat log is sometimes faster than the aura API
self:SimpleTimer(function() self:CheckTarget() end, 0.1) -- Combat log is sometimes faster than the aura API
end
end
function mod:SentinelKilled(args)
Expand Down
2 changes: 1 addition & 1 deletion BlackwingLair/Trash.lua
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ do
end
function mod:DetectMagicApplied(args)
if args.destGUID == self:UnitGUID("target") then
self:SimpleTimer(function() self:CheckTarget() end, 0.01) -- Combat log is sometimes faster than the aura API
self:SimpleTimer(function() self:CheckTarget() end, 0.1) -- Combat log is sometimes faster than the aura API
end
end
end

0 comments on commit 4e42a36

Please sign in to comment.