Core/Spells: Fix PCT spell mod calculation

in Cataclysm PCT bonus damage is additive
This commit is contained in:
funjoker
2024-09-26 10:36:11 +02:00
parent 1e7bb72424
commit 6aa1c72b3b

View File

@@ -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);
}