Skip to content

Commit

Permalink
fix: #2089 - Track swings with Crusading Strikes talent in swing timers
Browse files Browse the repository at this point in the history
  • Loading branch information
ascott18 committed Sep 8, 2024
1 parent 38617de commit 343fc6f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 4 additions & 2 deletions Components/Core/Common/SwingTimerMonitor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions Options/CHANGELOG.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 343fc6f

Please sign in to comment.