diff --git a/CHANGELOG.md b/CHANGELOG.md index b77cb338..599b7314 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## v11.0.7 * #1857 - Add LibCustomGlow animations. * #2144 - TMW now accounts for adjusted-rate cooldowns and auras (e.g. timer freezes caused by talents or boss mechanics). +* Fix: #2089 - Track swings with Crusading Strikes talent in swing timers * Fix: #2125 - "script ran too long" when zoning into instances. * Fix: #2191 - Icon Shown condition ignoring Shown/Hidden checkboxes for disabled icons/groups. * Fix: #2193 - Icon overlay and border animations starting in the wrong state. diff --git a/Components/Core/Common/SwingTimerMonitor.lua b/Components/Core/Common/SwingTimerMonitor.lua index 4b55253c..9ebde25b 100644 --- a/Components/Core/Common/SwingTimerMonitor.lua +++ b/Components/Core/Common/SwingTimerMonitor.lua @@ -64,8 +64,10 @@ local swingSpells = [strlowerCache[GetSpellName(845)]] = 1, -- Cleave [strlowerCache[GetSpellName(6807)]] = 1, -- Maul [strlowerCache[GetSpellName(2973)]] = 1, -- Raptor Strike - } - or {} + } or { + -- Retail spells: + [strlowerCache[GetSpellName(404542)]] = 1, -- Crusading Strikes (ret talent) + } if GetSpellName(56815) then swingSpells[strlowerCache[GetSpellName(56815)]] = 1 -- Rune Strike diff --git a/Options/CHANGELOG.lua b/Options/CHANGELOG.lua index 96621ce7..768b8a0e 100644 --- a/Options/CHANGELOG.lua +++ b/Options/CHANGELOG.lua @@ -6,6 +6,7 @@ TMW.CHANGELOG = [==[ ## v11.0.7 * #1857 - Add LibCustomGlow animations. * #2144 - TMW now accounts for adjusted-rate cooldowns and auras (e.g. timer freezes caused by talents or boss mechanics). +* Fix: #2089 - Track swings with Crusading Strikes talent in swing timers * Fix: #2125 - "script ran too long" when zoning into instances. * Fix: #2191 - Icon Shown condition ignoring Shown/Hidden checkboxes for disabled icons/groups. * Fix: #2193 - Icon overlay and border animations starting in the wrong state.