From 4bdb6789beabe5dcd0e7af8f24ca2ac6c6573b39 Mon Sep 17 00:00:00 2001 From: blinkysc <37940565+blinkysc@users.noreply.github.com> Date: Sat, 7 Mar 2026 04:35:58 -0600 Subject: [PATCH] fix(Core/Spells): Judgement of Wisdom should restore 2% base mana per proc (#25020) Co-authored-by: blinkysc --- src/server/scripts/Spells/spell_paladin.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/server/scripts/Spells/spell_paladin.cpp b/src/server/scripts/Spells/spell_paladin.cpp index acff77524..640d2d506 100644 --- a/src/server/scripts/Spells/spell_paladin.cpp +++ b/src/server/scripts/Spells/spell_paladin.cpp @@ -1374,7 +1374,8 @@ class spell_pal_judgement_of_wisdom_mana : public AuraScript if (!attacker) return; - int32 bp = int32(CalculatePct(attacker->GetCreateMana(), aurEff->GetAmount())); + SpellInfo const* spellInfo = sSpellMgr->AssertSpellInfo(SPELL_PALADIN_JUDGEMENT_OF_WISDOM_MANA); + int32 bp = int32(CalculatePct(attacker->GetCreateMana(), spellInfo->Effects[EFFECT_0].CalcValue())); attacker->CastCustomSpell(attacker, SPELL_PALADIN_JUDGEMENT_OF_WISDOM_MANA, &bp, nullptr, nullptr, true, nullptr, aurEff, GetCasterGUID()); }