From 35a149cfcd01eb32bc6fe9f702a20db36260bced Mon Sep 17 00:00:00 2001 From: Kevin Vongmany <93503441+kevinvongmany@users.noreply.github.com> Date: Thu, 25 Dec 2025 10:34:36 +1100 Subject: [PATCH] Fixed duplicate local var for announcing fixate (#8) --- DBM-ZG/EdgeOfMadness.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DBM-ZG/EdgeOfMadness.lua b/DBM-ZG/EdgeOfMadness.lua index 2708533..0d2c84c 100644 --- a/DBM-ZG/EdgeOfMadness.lua +++ b/DBM-ZG/EdgeOfMadness.lua @@ -35,7 +35,7 @@ local warnStun = mod:NewSpellAnnounce(6524) local timerStun = mod:NewNextTimer(12, 6524) -- local warnTarget = mod:NewSpellAnnounce(6524) --Gri'lek sets his sights on Red! -local warnStun = mod:NewSpecialWarningYou(40414) +local warnFixate = mod:NewSpecialWarningYou(40414) local timerFixate = mod:NewTargetTimer(20, 40414) local spamSleep = 0 @@ -61,7 +61,7 @@ function mod:CHAT_MSG_RAID_BOSS_EMOTE(msg, src) local targetName = msg:match("Gri\'lek sets his sights on (.+)!"); if targetName then if target == UnitName("player") then - warnStun:Show() + warnFixate:Show() end timerFixate:Start(targetName) end