*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
This commit is contained in:
maximius
2009-10-01 22:12:42 -07:00
parent 9af9528e16
commit f8060fed5a
2 changed files with 4 additions and 4 deletions

View File

@@ -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