From d395df0d0632fad2c1f4a7d54a6f2ead83fbecde Mon Sep 17 00:00:00 2001 From: Den Date: Sat, 25 Jun 2011 05:34:33 +0400 Subject: [PATCH] [11671] Druid t8 Restoration 4p bonus Signed-off-by: VladimirMangos --- src/game/SpellAuras.cpp | 5 +++++ src/shared/revision_nr.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 45734bc93..f0eafb729 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -5254,6 +5254,11 @@ void Aura::HandlePeriodicHeal(bool apply, bool /*Real*/) } m_modifier.m_amount = caster->SpellHealingBonusDone(target, GetSpellProto(), m_modifier.m_amount, DOT, GetStackAmount()); + + // Rejuvenation + if (GetSpellProto()->IsFitToFamily(SPELLFAMILY_DRUID, UI64LIT(0x0000000000000010))) + if (caster->HasAura(64760)) // Item - Druid T8 Restoration 4P Bonus + caster->CastCustomSpell(target, 64801, &m_modifier.m_amount, NULL, NULL, true, NULL); } } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 11c977ffc..878772ecb 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "11670" + #define REVISION_NR "11671" #endif // __REVISION_NR_H__