diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 36c53c22f..5649346b8 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -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; } } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 39f52804b..ac80e734b 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8953" + #define REVISION_NR "8954" #endif // __REVISION_NR_H__