From bfaeddbc4b79d822f4ad958b766fcb922c4b4656 Mon Sep 17 00:00:00 2001 From: nos4r2zod Date: Sun, 6 Dec 2009 01:13:12 +0300 Subject: [PATCH] [8921] Implemement talent 53583 and ranks refresh part for spell 54428 Signed-off-by: VladimirMangos --- src/game/SpellEffects.cpp | 8 ++++++++ src/shared/revision_nr.h | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index d78d9a4ca..e61fb7dff 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -5350,6 +5350,14 @@ void Spell::EffectScriptEffect(uint32 effIndex) } return; } + // Guarded by The Light (Paladin spell with SPELLFAMILY_WARLOCK) + case 63521: + { + // Divine Plea, refresh on target (3 aura slots) + if (Aura* aura = unitTarget->GetAura(54428,0)) + aura->RefreshAura(); + return; + } } break; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 848fde25d..fb4fe1e1d 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 "8920" + #define REVISION_NR "8921" #endif // __REVISION_NR_H__