fix(Core/Spells): Remove level scaling from Booming Voice (#21054)
This commit is contained in:
parent
d7189cf87e
commit
fa9718b737
1 changed files with 6 additions and 0 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue