mirror of
https://github.com/mangosfour/server.git
synced 2025-12-21 19:37:02 +00:00
[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:
parent
692f32c82a
commit
610703c14b
5 changed files with 48 additions and 2 deletions
|
|
@ -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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue