From a29926d52fc31ffa215ac030b0ad540ee4896607 Mon Sep 17 00:00:00 2001 From: UltraNix <80540499+UltraNix@users.noreply.github.com> Date: Sun, 28 Aug 2022 01:11:33 +0200 Subject: [PATCH] =?UTF-8?q?fix(Core/Spells):=20Fixed=20Rejuvenation=20heal?= =?UTF-8?q?ing=20amount=20increased=20by=20Idol=E2=80=A6=20(#12812)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... of Rejuvenation and Harold's Rejuvenating Broach. --- src/server/game/Entities/Unit/Unit.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index 169f5ded8..da48a89ba 100644 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -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;