Core/Stat: readd incorrectly removed feral ap bonus to Monkin form

- Shall not inherit predatory strikes bonus like before though:
  * Patch 3.1.0 notes: This talent no longer works when in Moonkin form.
This commit is contained in:
ariel-
2016-12-09 15:04:25 -03:00
parent e8528717a5
commit d9d433f59d
@@ -416,6 +416,9 @@ void Player::UpdateAttackPowerAndDamage(bool ranged)
case FORM_DIREBEAR:
val2 = getLevel() * levelBonus + GetStat(STAT_STRENGTH) * 2.0f - 20.0f + weaponBonus + m_baseFeralAP;
break;
case FORM_MOONKIN:
val2 = GetStat(STAT_STRENGTH) * 2.0f - 20.0f + m_baseFeralAP;
break;
default:
val2 = GetStat(STAT_STRENGTH) * 2.0f - 20.0f;
break;