mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "8953"
|
||||
#define REVISION_NR "8954"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue