fix(DB/Creature) Solve various issues on dk starting area (phase 4). (#22017)

This commit is contained in:
Rocco Silipo
2025-04-29 15:40:46 +02:00
committed by GitHub
parent 8ba0b7a4b2
commit 025b579822
2 changed files with 113 additions and 0 deletions

View File

@@ -4916,6 +4916,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx3 |= SPELL_ATTR3_SUPPRESS_CASTER_PROCS;
});
// Torch (Death Knights near the Chapel)
ApplySpellFix({ 52953 }, [](SpellInfo* spellInfo)
{
spellInfo->MaxAffectedTargets = 1;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];