Core/Spells:

* fixed Unholy Command talent
* fixed Resilient Infection talent
* fixed Desecration casting range and make sure that it only procs against targets that are not immune to movement slowing effects
This commit is contained in:
Ovahlord
2019-02-14 12:51:49 +01:00
parent adf168e01b
commit 27fb9ad8dd
3 changed files with 115 additions and 11 deletions

View File

@@ -5164,6 +5164,15 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_0].ApplyAuraName = SPELL_AURA_PERIODIC_HEAL;
});
// Desecration
ApplySpellFix({
55741,
68766
}, [](SpellInfo* spellInfo)
{
spellInfo->RangeEntry = sSpellRangeStore.LookupEntry(7); // 10yd
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];