fix(Core/Spells): Fixed Rejuvenation healing amount increased by Idol… (#12812)

... of Rejuvenation and Harold's Rejuvenating Broach.
This commit is contained in:
UltraNix
2022-08-28 01:11:33 +02:00
committed by GitHub
parent 6d0b9b87e6
commit a29926d52f

View File

@@ -12045,6 +12045,8 @@ uint32 Unit::SpellHealingBonusDone(Unit* victim, SpellInfo const* spellProto, ui
{
case 4415: // Increased Rejuvenation Healing
case 4953:
DoneTotal += (*i)->GetAmount() / 5; // 5 ticks of Rejuvenation
break;
case 3736: // Hateful Totem of the Third Wind / Increased Lesser Healing Wave / LK Arena (4/5/6) Totem of the Third Wind / Savage Totem of the Third Wind
DoneTotal += (*i)->GetAmount();
break;