diff options
| author | megamage <none@none> | 2009-06-13 09:45:16 -0500 |
|---|---|---|
| committer | megamage <none@none> | 2009-06-13 09:45:16 -0500 |
| commit | e3a4622019ea6666aac6c73aa82f3d1b13155601 (patch) | |
| tree | 18aa88eb67168671bd983e78b715439aca065d4f /src | |
| parent | e3b748206e9f0f4c8998ac85a39e32cf1d8580b1 (diff) | |
[8000] Corrected calculation of healing amount for 47230 and ranks. Author: ApoC
--HG--
branch : trunk
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/Unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 70c469f1b29..d369426e1cb 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -5598,7 +5598,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger target = GetGuardianPet(); if (!target) return false; - basepoints0 = damage * 15 / 100; + basepoints0 = damage * triggerAmount / 100; triggered_spell_id = 54181; break; } |
