Skip to content

Commit

Permalink
[Hunter] Flanking Strike pet dmg is adding raw player ap
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayezi committed Aug 14, 2024
1 parent c0a2bb6 commit 1e58160
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/class_modules/sc_hunter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3144,8 +3144,8 @@ struct flanking_strike_t: public hunter_main_pet_attack_t
{
double bonus = hunter_main_pet_attack_t::bonus_da( s );

// Adding player ap (* effect 1 from talent spell?).
bonus += o()->composite_total_attack_power_by_type( p()->default_ap_type() ) * o()->talents.flanking_strike->effectN( 1 ).percent();
// Adding raw player ap (* effect 1 from talent spell tooltip).
bonus += o()->cache.attack_power() * o()->composite_attack_power_multiplier() * o()->talents.flanking_strike->effectN( 1 ).percent();

return bonus;
}
Expand Down

0 comments on commit 1e58160

Please sign in to comment.