Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions engine/class_modules/sc_death_knight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10204,7 +10204,8 @@ struct fwf_action_base_t : public death_knight_spell_t

if ( p()->talent.deathbringer.echoing_fury.ok() ) {
p()->buffs.exterminate->trigger( exterm_stacks );
debug_cast<exterminate_t*>( p()->background_actions.exterminate )->empowered = exterm_stacks;
auto test = p()->background_actions.exterminate;
debug_cast<exterminate_t*>( test )->empowered = exterm_stacks;
debug_cast<exterminate_aoe_t*>( p()->background_actions.exterminate_aoe )->empowered = exterm_stacks;
}

Expand Down Expand Up @@ -13805,11 +13806,11 @@ void death_knight_t::create_actions()
{
background_actions.soul_rupture = get_action<soul_rupture_t>( "reapers_mark_soul_rupture", this );
}
if ( talent.deathbringer.exterminate.ok() )
if ( talent.deathbringer.exterminate.ok() || talent.deathbringer.echoing_fury.ok() )
{
background_actions.exterminate = get_action<exterminate_t>( "exterminate", this );
}
if ( talent.deathbringer.exterminate.ok() )
if ( talent.deathbringer.exterminate.ok() || talent.deathbringer.echoing_fury.ok() )
{
background_actions.exterminate_aoe = get_action<exterminate_aoe_t>( "exterminate_second_hit", this );
}
Expand Down
Loading