[REC] Hekili doesn't recommend trinket [Kaheti Shadeweaver's Emblem]
Jumimaru opened this issue · 11 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 issue (above) so that it describes the issue I am reporting.
- I am reporting an issue with the default priority included with the specialization (imported or edited priorities are not supported).
Spec
Warlock - Destruction
Describe the Issue
For my Warlock i expact the addon to recommend the trinket Kaheti Shadeweaver's Emblem, but it doesnt even when its at full power.
How to Reproduce
Kaheti Shadeweaver's Emblem doesn't get a recommendation, probably not in the default rotation list.
Snapshot (Link)
Raidbots Sim Report (Link)
https://www.raidbots.com/simbot/report/4gFZXUfZ7htRoGhSm3TYjV
Additional Information
No response
Contact Information
No response
This should do the trick brother, let me know if you need anything else (y)!
You can see in this picture i have the buff on me (10 stacks)!
But still no recommendation in the addon.
This should be the log from the screenshot:
At maximum stacks, the trinket does not show in my prio list, when you press it, you do the dmg. It needs to show the icon when it's at full stacks (at least it should).
Hope this helps, even the log does say i don't have the buff. The reality is i have the buff (check screenshot).
TheWarWithin/Items.lua
has the buff ID as 455479, so there's definitely a discrepancy.
TheWarWithin/Items.lua
has the buff ID as 455479, so there's definitely a discrepancy.
Yeah that's what I was thinking, I just don't have the trinket to test for myself lol.
I decided to just make a PR for it since the change is small and seemed correct when I looked up the relevant spells on Wowhead.
The trinket randomly applies a buff and you activate when that happens to trigger the effect. You would need to provide a snapshot when this buff is on you and the trinket still isn't recommended.
player_buffs:
108366 - soul_leech - 1 - 3600.00
186406 - *sign_of_the_critter - 1 - 3600.00
335149 - *sign_of_the_scourge - 1 - 3600.00
415603 - *encapsulated_destiny - 1 - 3600.00
387158 - impending_ruin - 8 - 3600.00
Substituting kaheti_shadeweavers_emblem for Kaheti Shadeweaver's Emblem action; it is otherwise not included in the priority.
38. kaheti_shadeweavers_emblem ( items - 2 )
The action (kaheti_shadeweavers_emblem) is unusable at (3.58 + 1.34) because required buff (kaheti_shadeweavers_dark_ritual) not active.
kaheti_shadeweavers_emblem = {
cast = 0,
cooldown = 60,
gcd = "off",
item = 225651,
toggle = "cooldowns",
buff = "kaheti_shadeweavers_dark_ritual",
proc = "damage",
handler = function()
removeBuff( "kaheti_shadeweavers_dark_ritual" )
end,
auras = {
kaheti_shadeweavers_dark_ritual = {
id = 455479,
duration = 30,
max_stack = 10
}
}
},