diff options
author | maximius <none@none> | 2009-10-01 22:12:42 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-10-01 22:12:42 -0700 |
commit | f8060fed5ad0029d48d14b4ba14190093da49929 (patch) | |
tree | e7f0285afc4f6854ef29e76aeb7331bf49e94a26 /src/game/Unit.cpp | |
parent | 9af9528e163e5d51f606e725a25c2a7ac5b25d61 (diff) |
*Gift of the Naaru healing fix (now healing bonus is 1/5th AP, as it should be), by Destalker
*Proper Svala ID after transformation, by SoulForge
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-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 2db1ad96a8a..5f27254638c 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -9857,7 +9857,7 @@ uint32 Unit::SpellHealingBonus(Unit *pVictim, SpellEntry const *spellProto, uint int32 apBonus = std::max(GetTotalAttackPowerValue(BASE_ATTACK), GetTotalAttackPowerValue(RANGED_ATTACK)); if (apBonus > DoneAdvertisedBenefit) { - DoneTotal += apBonus * stack; + DoneTotal += apBonus * 0.2f; coeff = 0.0f; } else |