fix(Core/Spells): Seed of Corruption cannot be reflected. (#15473)
* fix(Core/Spells): Seed of Corruption cannot be reflected. Fixes #15458 * Update.
This commit is contained in:
parent
9e6dcb9e08
commit
a90c3c387d
1 changed files with 6 additions and 0 deletions
|
|
@ -4495,6 +4495,12 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||
spellInfo->CastTimeEntry = sSpellCastTimesStore.LookupEntry(1); // 0s
|
||||
});
|
||||
|
||||
// Seed of Corruption
|
||||
ApplySpellFix({ 27285, 47833, 47834 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->AttributesEx |= SPELL_ATTR1_NO_REFLECTION;
|
||||
});
|
||||
|
||||
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
|
||||
{
|
||||
SpellInfo* spellInfo = mSpellInfoMap[i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue