Shadow Priest SW:D
saterial opened this issue ยท 2 comments
How can I fix Shadow Word : Death?
Doesn't show up in the rotation at all. I've tried in both Voidform and regular. SW:D is completely ignored and so is the artifact weapon.
#shadow_word_death,if=!talent.reaper_of_souls.enabled&cooldown.shadow_word_death.charges=2&insanity<=90
if not Talent(reaper_of_souls_talent) and SpellChargeCooldown(shadow_word_death) == 2 and Insanity() <= 90 Spell(shadow_word_death)
#shadow_word_death,if=talent.reaper_of_souls.enabled&cooldown.shadow_word_death.charges=2&insanity<=70
if Talent(reaper_of_souls_talent) and SpellChargeCooldown(shadow_word_death) == 2 and Insanity() <= 70 Spell(shadow_word_death)
it seems that the simc APL statement cooldown.shadow_word_death.charges=2
is translated to SpellChargeCooldown(shadow_word_death) == 2
. I don't think this is intended behavior. Especially not the equals.
Not so sure what is ment by the simc APL though.
Should we re-evaluate how cooldown.spell.charges works?