fix(Core/Spells): Fixed damage of Burning Adrenaline. (#10901)

* fix(Core/Spells): Fixed damage of Burning Adrenaline.

Fixes #10772

* Update SpellInfoCorrections.cpp

Co-authored-by: acidmanifesto <joshua.lee.betts@gmail.com>
This commit is contained in:
UltraNix
2022-03-08 09:10:13 +01:00
committed by GitHub
parent b672effc36
commit a0d9d59b9d

View File

@@ -4216,6 +4216,13 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx2 |= SPELL_ATTR2_IGNORE_LINE_OF_SIGHT;
});
// Burning Adrenaline
ApplySpellFix({ 23478 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_0].BasePoints = 4374;
spellInfo->Effects[EFFECT_0].DieSides = 1250;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];