Skip to content

Commit

Permalink
[Monk] Fix Armor Multiplier from being additive to multiplicative
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinalover committed Dec 20, 2016
1 parent 3a0c97b commit c5141f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engine/class_modules/sc_monk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8134,13 +8134,13 @@ double monk_t::composite_armor_multiplier() const
{
double a = player_t::composite_armor_multiplier();

a += spec.stagger -> effectN( 14 ).percent();
a *= 1 + spec.stagger -> effectN( 14 ).percent();

if ( specialization() == MONK_BREWMASTER )
a += passives.aura_brewmaster_monk -> effectN( 6 ).percent();
a *= 1 + passives.aura_brewmaster_monk -> effectN( 6 ).percent();

if ( artifact.wanderers_hardiness.rank() )
a += artifact.wanderers_hardiness.percent();
a *= 1 + artifact.wanderers_hardiness.percent();

return a;
}
Expand Down

0 comments on commit c5141f9

Please sign in to comment.