File tree 3 files changed +13
-0
lines changed
3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ v1.15.8:
4
+
5
+ - Fix reported error with custom cooldown bars set to "when ready" mode due to deprecation in 11.x (wowace issue #368 )
6
+
3
7
v1.15.7:
4
8
5
9
- Fix cooldown display for overridden spells (such as Evoker spells where Font of Magic replaces the base spell with an override with the same name).
Original file line number Diff line number Diff line change @@ -61,6 +61,11 @@ if not IsUsableSpell and C_Spell then
61
61
IsUsableSpell = C_Spell .IsSpellUsable
62
62
end
63
63
64
+ local SpellHasRange = SpellHasRange
65
+ if not SpellHasRange and C_Spell then
66
+ SpellHasRange = C_Spell .SpellHasRange
67
+ end
68
+
64
69
IceCustomCDBar .prototype .cooldownDuration = 0
65
70
IceCustomCDBar .prototype .cooldownEndTime = 0
66
71
IceCustomCDBar .prototype .coolingDown = false
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ v1.15.8:
4
+
5
+ - Fix reported error with custom cooldown bars set to "when ready" mode due to deprecation in 11.x (wowace issue #368 )
6
+
3
7
v1.15.7:
4
8
5
9
- Fix cooldown display for overridden spells (such as Evoker spells where Font of Magic replaces the base spell with an override with the same name).
You can’t perform that action at this time.
0 commit comments