From aea540181b38e191d6f237e6a26e561ca10094f6 Mon Sep 17 00:00:00 2001 From: Christopher Galbraith <39371221+ChrisCGalbraith@users.noreply.github.com> Date: Sat, 26 Aug 2023 16:35:56 +0100 Subject: [PATCH] fix(Spell): set torment of the worgen to have 3% proc chance (#17005) Co-authored-by: ChrisCGalbraith --- src/server/game/Spells/SpellInfoCorrections.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/server/game/Spells/SpellInfoCorrections.cpp b/src/server/game/Spells/SpellInfoCorrections.cpp index 6363a6b68..24019070a 100644 --- a/src/server/game/Spells/SpellInfoCorrections.cpp +++ b/src/server/game/Spells/SpellInfoCorrections.cpp @@ -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];