fix(Core/Spells): Place Fake Fur should activate Caribou Trap. (#12297)

Fixes #12226
This commit is contained in:
UltraNix
2022-07-03 16:35:51 +02:00
committed by GitHub
parent a87860dd7f
commit 0a71a46c50

View File

@@ -4301,6 +4301,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_0].MiscValueB = 64;
});
// Place Fake Fur
ApplySpellFix({ 46085 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_0].MiscValue = 8;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];