mirror of
https://github.com/mangosfour/server.git
synced 2025-12-21 10:37:06 +00:00
[8954] Implement spells 65495 and 65386.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
8d519d7219
commit
08e0658430
2 changed files with 17 additions and 1 deletions
|
|
@ -3238,6 +3238,22 @@ void Aura::HandleAuraTransform(bool apply, bool Real)
|
|||
}
|
||||
// Murloc costume
|
||||
case 42365: m_target->SetDisplayId(21723); break;
|
||||
// Honor the Dead
|
||||
case 65386:
|
||||
case 65495:
|
||||
{
|
||||
switch(m_target->getGender())
|
||||
{
|
||||
case GENDER_MALE:
|
||||
m_target->SetDisplayId(29203); // Chapman
|
||||
break;
|
||||
case GENDER_FEMALE:
|
||||
case GENDER_NONE:
|
||||
m_target->SetDisplayId(29204); // Catrina
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue