fix(Core/Spells): BT - Summon Shadowfiens should spawn 10, instead of 1

This commit is contained in:
avarishd
2024-07-12 11:20:01 +03:00
parent 70eb920b10
commit e5040484b6

View File

@@ -4814,6 +4814,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx4 |= SPELL_ATTR4_NO_CAST_LOG;
});
// Summon Shadowfiends
ApplySpellFix({ 41159 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_0].BasePoints = 9;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];