Skip to content

Commit

Permalink
fix: #2170 specific aura variable indexes 1,2,3 not working on buff/d…
Browse files Browse the repository at this point in the history
…ebuff icons
  • Loading branch information
ascott18 committed Jul 13, 2024
1 parent b3c166a commit 6c0a3de
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## v10.2.8
* Fix dragging a spell to an icon not working in WoW 10.2.7.
* Fix: dragging a spell to an icon not working in WoW 10.2.7.
* Fix: #2168 floating point errors in alpha animations
* Fix: Icon fade animations not always working on condition icons
* Fix: #2170 specific aura variable indexes 1,2,3 not working on buff/debuff icons

## v10.2.7
* Initial support for WoW 11.0
Expand Down
2 changes: 1 addition & 1 deletion Components/IconTypes/IconType_buff/buff.lua
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ function Type:HandleYieldedInfo(icon, iconToSet, unit, instance)
end
else
-- icon.ShowTTText is a number if it isn't false and it isn't true
count = select(icon.ShowTTText, v1, v2, v3)
count = instance.points[icon.ShowTTText]
end
end

Expand Down
5 changes: 4 additions & 1 deletion Options/CHANGELOG.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ TMW.CHANGELOG_LASTVER="7.4.0"

TMW.CHANGELOG = [==[
## v10.2.8
* Fix dragging a spell to an icon not working in WoW 10.2.7.
* Fix: dragging a spell to an icon not working in WoW 10.2.7.
* Fix: #2168 floating point errors in alpha animations
* Fix: Icon fade animations not always working on condition icons
* Fix: #2170 specific aura variable indexes 1,2,3 not working on buff/debuff icons
## v10.2.7
* Initial support for WoW 11.0
Expand Down

0 comments on commit 6c0a3de

Please sign in to comment.