monk recommend fof when I only have 2 chi
78jeffrey opened this issue ยท 3 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).
Describe the Issue
Monk class recommend FoF when I only have 2 chi
How to Reproduce
FoF need 3 chi to cast.
Snapshot (Link)
Raidbots Sim Report (Link)
No response
Additional Information
No response
Contact Information
No response
@Hekili , your ordered_elements statements are backwards on all the spend functions.
e.g.
1815 spend = function() return buff.ordered_elements.up and 2 or 1 end,
should be
1815 spend = function() return buff.ordered_elements.up and 1 or 2 end,
@Hekili , your ordered_elements statements are backwards on all the spend functions.
e.g.
1815 spend = function() return buff.ordered_elements.up and 2 or 1 end,
should be
1815 spend = function() return buff.ordered_elements.up and 1 or 2 end,
Note that there are only some that are inverted. In some statements, buff.ordered_elements.up is used to determine how much chi a spell costs, but in other statements, it's used to determine how much chi should be deducted from the cost.