Hekili Priority Helper

Hekili Priority Helper

44M Downloads

[REC] Brewmaster Keg smash charges issue

W8ink opened this issue ยท 3 comments

commented

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).

Describe the Issue

Addons\Hekili\Dragonflight\MonkBrewmaster.lua
Replace:

keg_smash = {
id = 121253,
cast = 0,
cooldown = 8,
charges = function () return legendary.stormstouts_last_keg.enabled and 2 or nil end,
recharge = function () return legendary.stormstouts_last_keg.enabled and 8 or nil end,
gcd = "totem",
school = "physical",

with something like:

keg_smash = {
id = 121253,
cast = 0,
cooldown = function () return 8 * haste end,
charges = function () return talent.stormstouts_last_keg.enabled and 2 or nil end,
recharge = function () return 8 * haste end,
gcd = "totem",
school = "physical",

How to Reproduce

dont know what to write

Snapshot (Link)

1

Raidbots Sim Report (Link)

No response

Additional Information

No response

Contact Information

W8ink#7189

commented

Will be fixed in next release.

commented

You'll have to actually explain your reasoning.

edit: I'm interpreting this as "Stormstout's Last Keg" talent doesn't appear implemented and needs to result in a second charge.

commented

sry for absent discription of issue and ty for response!