fix(Spell): set torment of the worgen to have 3% proc chance (#17005)

Co-authored-by: ChrisCGalbraith <chriscgalbraith@gmai.com>
This commit is contained in:
Christopher Galbraith 2023-08-26 16:35:56 +01:00 committed by GitHub
parent 23c5e990b6
commit aea540181b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4580,6 +4580,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AuraInterruptFlags |= AURA_INTERRUPT_FLAG_TAKE_DAMAGE;
});
// Torment of the Worgen
ApplySpellFix({ 30567 }, [](SpellInfo* spellInfo)
{
spellInfo->ProcChance = 3;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];