8000 [Hunter] Differentiate between 2p and 4p for Bestial Wrath · Pewtro/simc@3acf0fa · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
[Hunter] Differentiate between 2p and 4p for Bestial Wrath
Browse files Browse the repository at this point in the history
  • Loading branch information
Pewtro committed Feb 11, 2025
1 parent dca9d4b commit 3acf0fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions engine/class_modules/sc_hunter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2118,7 +2118,7 @@ struct hunter_main_pet_base_t : public stable_pet_t
make_buff( this, "piercing_fangs", o() -> find_spell( 392054 ) )
-> set_default_value_from_effect( 1 )
-> set_chance( o() -> talents.piercing_fangs.ok() );
}
}

double composite_melee_auto_attack_speed() const override
{
Expand Down Expand Up @@ -7291,11 +7291,11 @@ struct bestial_wrath_t: public hunter_spell_t
if ( p()->talents.lead_from_the_front->ok() )
p()->trigger_howl_of_the_pack_leader_ready();

if ( p()->tier_set.tww_s2_bm_2pc.ok() )
barbed_shot_tww_s2_bm_2pc->execute_on_target( target );

if ( p()->tier_set.tww_s2_bm_4pc.ok() )
{
p()->pets.main->buffs.potent_mutagen->trigger();
barbed_shot_tww_s2_bm_2pc->execute_on_target( target );
}
}

bool ready() override
Expand Down

0 comments on commit 3acf0fa

Please sign in to comment.
0