mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-21 15:27:47 -04:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user