[BUG] Feral DoTs should not have their duration altered by haste.
ChrisKader opened this issue ยท 1 comments
Before You Begin
- I confirm that I have downloaded the latest version of the addon.
- I am not playing on a private server.
- I checked for an existing, open ticket for this issue and was not able to find one.
- I edited the title of this bug report (above) so that it describes the issue I am reporting.
Describe the Issue
Example:
moonfire_cat = {
id = 155625,
duration = function () return mod_circle_dot( 18 ) * haste end,
tick_time = function() return mod_circle_dot( 2 ) * haste end,
max_stack = 1,
copy = "lunar_inspiration",
meta = {
ticks_gained_on_refresh = function( t )
return tick_calculator( t, t.key, false )
end,
ticks_gained_on_refresh_pmultiplier = function( t )
return tick_calculator( t, t.key, true )
end,
}
},
should be
moonfire_cat = {
id = 155625,
duration = function () return mod_circle_dot( 18 ) end,
tick_time = function() return mod_circle_dot( 2 ) * haste end,
max_stack = 1,
copy = "lunar_inspiration",
meta = {
ticks_gained_on_refresh = function( t )
return tick_calculator( t, t.key, false )
end,
ticks_gained_on_refresh_pmultiplier = function( t )
return tick_calculator( t, t.key, true )
end,
}
},
Same for Auras: moonfire_cat, moonfire, primal_wrath, rake, regrowth, thrash_bear, thrash_cat
Abilities: primal_wrath, regrowth, rip
The aura rip
does have correct duration.
How to Reproduce
- Check TheWarWithin/DruidFeral.lua
Player Information (Link)
n/a
Error Messages (Link)
n/a
Additional Information
No response
Contact Information
No response