From 4e42a361a2abf1838613ad8023c08095a1367096 Mon Sep 17 00:00:00 2001 From: funkydude Date: Sat, 22 Jun 2024 12:09:59 +0100 Subject: [PATCH] Tweaks --- AQ40/Cthun.lua | 4 ++-- AQ40/Trash.lua | 2 +- BlackwingLair/Trash.lua | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AQ40/Cthun.lua b/AQ40/Cthun.lua index 698e86e..fb58632 100644 --- a/AQ40/Cthun.lua +++ b/AQ40/Cthun.lua @@ -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) diff --git a/AQ40/Trash.lua b/AQ40/Trash.lua index ebb5e71..2203610 100644 --- a/AQ40/Trash.lua +++ b/AQ40/Trash.lua @@ -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) diff --git a/BlackwingLair/Trash.lua b/BlackwingLair/Trash.lua index 83f9f78..8c2a1ea 100644 --- a/BlackwingLair/Trash.lua +++ b/BlackwingLair/Trash.lua @@ -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