fix(Core/Spells): Healing Salve having cast time. (#15329)

This commit is contained in:
avarishd
2023-03-17 18:38:54 +02:00
committed by GitHub
parent d2c132772f
commit 7f7ec62a0a

View File

@@ -4489,6 +4489,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->DurationEntry = sSpellDurationStore.LookupEntry(556); // 28 seconds
});
// Quest - Healing Salve
ApplySpellFix({ 29314 }, [](SpellInfo* spellInfo)
{
spellInfo->CastTimeEntry = sSpellCastTimesStore.LookupEntry(1); // 0s
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];