fix(Core/Spells): Remove level scaling from Booming Voice (#21054)

This commit is contained in:
Jelle Meeus
2025-01-02 00:24:39 +01:00
committed by GitHub
parent d7189cf87e
commit fa9718b737

View File

@@ -4862,6 +4862,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->RequiresSpellFocus = 0;
});
// Booming Voice
ApplySpellFix({ 40080 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_0].RealPointsPerLevel = 0;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];