[8954] Implement spells 65495 and 65386.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
LordJZ 2009-12-09 13:55:32 +03:00 committed by VladimirMangos
parent 8d519d7219
commit 08e0658430
2 changed files with 17 additions and 1 deletions

View file

@ -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;
}
}

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "8953"
#define REVISION_NR "8954"
#endif // __REVISION_NR_H__