From 43eb574a378c39f005dfba64c2a47b94d0ab6d0a Mon Sep 17 00:00:00 2001 From: megamage Date: Fri, 5 Jun 2009 17:27:36 -0500 Subject: [7963] Fixed energize value for 20186 proc. Author: ApoC --HG-- branch : trunk --- src/game/Unit.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 2b9f17b1402..b858de7228e 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -6062,7 +6062,12 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger // Judgement of Wisdom case 20186: { - pVictim->CastSpell(pVictim, 20268, true, NULL, triggeredByAura); + if (pVictim->getPowerType() == POWER_MANA) + { + // 2% of maximum mana + basepoints0 = int32(pVictim->GetMaxPower(POWER_MANA) * 2 / 100); + pVictim->CastCustomSpell(pVictim, 20268, &basepoints0, NULL, NULL, true, 0, triggeredByAura); + } return true; } // Holy Power (Redemption Armor set) -- cgit v1.2.3