[8921] Implemement talent 53583 and ranks refresh part for spell 54428

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
nos4r2zod 2009-12-06 01:13:12 +03:00 committed by VladimirMangos
parent 155ea6f40a
commit bfaeddbc4b
2 changed files with 9 additions and 1 deletions

View file

@ -5350,6 +5350,14 @@ void Spell::EffectScriptEffect(uint32 effIndex)
} }
return; 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; break;
} }

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "8920" #define REVISION_NR "8921"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__