We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3c51a9 commit 23040bcCopy full SHA for 23040bc
1 file changed
engine/class_modules/sc_death_knight.cpp
@@ -8665,6 +8665,10 @@ struct blood_boil_t final : public death_knight_spell_t
8665
8666
if ( p()->buffs.boiling_point->up() )
8667
{
8668
+ // If boiling point echo is already up, we expire it to force it to fire, and queue up a new one
8669
+ // Of note, this means the casting BB, as well as the expired echo BB benefit from the buff
8670
+ if ( p()->buffs.boiling_point_echo->up() )
8671
+ p()->buffs.boiling_point_echo->expire();
8672
p()->buffs.boiling_point->expire();
8673
p()->buffs.boiling_point_echo->trigger();
8674
}
0 commit comments