From 380f6cb60ff21f5c2c70ec095f03c159c5c1eea1 Mon Sep 17 00:00:00 2001 From: blinkysc <37940565+blinkysc@users.noreply.github.com> Date: Sun, 17 May 2026 12:08:28 -0500 Subject: [PATCH] fix(Core/Spells): Stop JoL/JoW from procing caster's heal trinkets (#25881) Co-authored-by: blinkysc --- src/server/game/Spells/SpellInfoCorrections.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/server/game/Spells/SpellInfoCorrections.cpp b/src/server/game/Spells/SpellInfoCorrections.cpp index 03b9107fe..a3b4d9f35 100644 --- a/src/server/game/Spells/SpellInfoCorrections.cpp +++ b/src/server/game/Spells/SpellInfoCorrections.cpp @@ -562,11 +562,15 @@ void SpellMgr::LoadSpellInfoCorrections() 20184, // Judgement of Justice 20185, // Judgement of Light 20186, // Judgement of Wisdom + 20267, // Judgement of Light (triggered heal on attacker) + 20268, // Judgement of Wisdom (triggered mana on attacker) 68055 // Judgements of the Just }, [](SpellInfo* spellInfo) { // hack for seal of light and few spells, judgement consists of few single casts and each of them can proc // some spell, base one has disabled proc flag but those dont have this flag + // 20267/20268 are passive proc effects from the judgement debuff; they must not cause the paladin's + // on-heal/on-cast procs (e.g. Soul Preserver, which has CAN_PROC_FROM_PROCS) to fire spellInfo->AttributesEx3 |= SPELL_ATTR3_SUPPRESS_CASTER_PROCS; });