[8492] Implement talent 53563.

Original patch suggested by Arthorius.
Added data in mangos_spell_check to remember requirement update code for 3.2.x support in future.
This commit is contained in:
VladimirMangos 2009-09-12 10:54:30 +04:00
parent 692f32c82a
commit 610703c14b
5 changed files with 48 additions and 2 deletions

View file

@ -2406,6 +2406,20 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
}
break;
}
case SPELLFAMILY_PALADIN:
{
// Beacon of Light
if (GetId() == 53563)
{
if(apply)
// original caster must be target (beacon)
m_target->CastSpell(m_target,53651,true,NULL,this,m_target->GetGUID());
else
m_target->RemoveAurasDueToSpell(53651);
return;
}
break;
}
case SPELLFAMILY_DRUID:
{
switch(GetId())