diff options
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
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) |