Lightsmith holy armaments not being recommended, integral to personal dps on protection and holy on Lightsmith.
nthnprsnlkid 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
Addon not recommending Holy Bulwark or Sacred weapon.
How to Reproduce
If possible, pandemic would be great.
Snapshot (Link)
Raidbots Sim Report (Link)
No response
Additional Information
No response
Contact Information
No response
so I think its to do with this:
next_armament[sacred_weapon] = sacred_weapon[true]
next_armament
is a variable that evaluates to the word sacred_weapon
sacred_weapon
is a variable that evaluates as true
which looks like its comparing the word "sacred_weapon" to true, which is false ("sacred_weapon" !== true).
Could try using just sacred_weapon
instead of next_armament=sacred_weapon
Or otherwise try to quote it (not sure if this works in hekili) next_armament="sacred_weapon"
the same for holy_bulwark:
next_armament[sacred_weapon] = holy_bulwark[false]
removing this and the next line might work too, so theyre not vars?
https://github.com/Hekili/hekili/blob/thewarwithin/TheWarWithin/PaladinProtection.lua#L922