We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 120368b commit fb299b9Copy full SHA for fb299b9
engine/class_modules/priest/sc_priest.cpp
@@ -3427,6 +3427,12 @@ parsed_assisted_combat_rule_t priest_t::parse_assisted_combat_rule( const assist
3427
return { "buff.entropic_rift.up" };
3428
}
3429
3430
+ // guard against buff.power_word_fortitude_highlight, base sim handles this
3431
+ if ( step.spell_id == 21562 && rule.condition_value_1 == 1271911 )
3432
+ {
3433
+ return { "0" };
3434
+ }
3435
+
3436
return player_t::parse_assisted_combat_rule( rule, step );
3437
3438
0 commit comments