diff options
-rw-r--r-- | src/game/StatSystem.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/StatSystem.cpp b/src/game/StatSystem.cpp index 36818adb36d..3e9ddcf3bef 100644 --- a/src/game/StatSystem.cpp +++ b/src/game/StatSystem.cpp @@ -336,6 +336,8 @@ void Player::UpdateAttackPowerAndDamage(bool ranged ) UpdateDamagePhysical(BASE_ATTACK); if(CanDualWield() && haveOffhandWeapon()) //allow update offhand damage only if player knows DualWield Spec and has equipped offhand weapon UpdateDamagePhysical(OFF_ATTACK); + if(getClass() == CLASS_SHAMAN) // mental quickness + UpdateSpellDamageAndHealingBonus(); } } |