mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-30 21:57:01 +01:00
Core/Spells: Fix PCT spell mod calculation
in Cataclysm PCT bonus damage is additive
This commit is contained in:
@@ -21099,7 +21099,7 @@ void Player::GetSpellModValues(SpellInfo const* spellInfo, SpellModOp op, Spell*
|
||||
continue;
|
||||
}
|
||||
|
||||
*pct *= 1.0f + CalculatePct(1.0f, value);
|
||||
*pct += CalculatePct(1.0f, value);
|
||||
Player::ApplyModToSpell(mod, spell);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user