fix(Core/Spells): Fixed rank 6 of Flametongue Weapon. (#11689)

Fixes #8351
This commit is contained in:
UltraNix
2022-05-10 17:02:45 +02:00
committed by GitHub
parent 32b7531295
commit 27fe28083c

View File

@@ -4257,6 +4257,13 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx3 |= SPELL_ATTR3_SUPRESS_TARGET_PROCS;
});
// Flametongue Weapon (Passive) (Rank 6)
ApplySpellFix({ 16312 }, [](SpellInfo* spellInfo)
{
spellInfo->Attributes |= SPELL_ATTR0_PASSIVE;
spellInfo->DurationEntry = sSpellDurationStore.LookupEntry(21);
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];