Skip to content

Commit

Permalink
Update sc_warlock.cpp
Browse files Browse the repository at this point in the history
Updating following suggestions from SimcMinMax Disc.
  • Loading branch information
Mlklock authored Dec 31, 2024
1 parent f1e12d9 commit 10d8461
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions engine/class_modules/warlock/sc_warlock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -363,11 +363,8 @@ double warlock_t::composite_player_pet_damage_multiplier( const action_state_t*
m *= 1.0 + talents.summoners_embrace->effectN( 2 ).percent();
}

if ( hero.flames_of_xoroth.ok() && !guardian )
m *= 1.0 + hero.flames_of_xoroth->effectN( 4 ).percent();

if ( hero.flames_of_xoroth.ok() && guardian )
m *= 1.0 + hero.flames_of_xoroth->effectN( 3 ).percent();
if ( hero.flames_of_xoroth.ok() )
m *= 1.0 + hero.flames_of_xoroth->effectN( guardian ? 3 : 4 ).percent();

if ( hero.abyssal_dominion.ok() && buffs.abyssal_dominion->check() )
m *= 1.0 + hero.abyssal_dominion_buff->effectN( guardian ? 1 : 2 ).percent();
Expand Down

0 comments on commit 10d8461

Please sign in to comment.