Skip to content

Commit

Permalink
[Gear] Mirror of Fractured Tomorrows, merge sand bolt with all pet in…
Browse files Browse the repository at this point in the history
…stances
  • Loading branch information
nyterage committed Jun 28, 2023
1 parent 4f6cff0 commit 4e4b1ad
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion engine/player/unique_gear_dragonflight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4953,9 +4953,12 @@ void mirror_of_fractured_tomorrows( special_effect_t& e )
: spell_t( "sand_bolt_missile", p, p->find_spell( 418605 ) )
{
dual = true;
// Merge the stats object with other instances of the pet
auto ta = p->owner->find_pet( "future_self" );
if ( ta && ta->find_action( "sand_bolt" ) )
stats = ta->find_action( "sand_bolt" )->stats;
auto damage = create_proc_action<generic_proc_t>( "sand_bolt", p, "sand_bolt", p->find_spell( 418607 ) );
damage -> base_dd_min = damage -> base_dd_max = e.driver()->effectN( 6 ).average( e.item );
stats = damage -> stats;
impact_action = damage;
}
};
Expand Down

0 comments on commit 4e4b1ad

Please sign in to comment.