Skip to content

Commit fb299b9

Browse files
committed
[Priest] fix blizzard_apl issue
1 parent 120368b commit fb299b9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

engine/class_modules/priest/sc_priest.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3427,6 +3427,12 @@ parsed_assisted_combat_rule_t priest_t::parse_assisted_combat_rule( const assist
34273427
return { "buff.entropic_rift.up" };
34283428
}
34293429

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+
34303436
return player_t::parse_assisted_combat_rule( rule, step );
34313437
}
34323438

0 commit comments

Comments
 (0)