From 08e06584309745bab791c7ed59e01d3d1a263c89 Mon Sep 17 00:00:00 2001 From: LordJZ Date: Wed, 9 Dec 2009 13:55:32 +0300 Subject: [PATCH] [8954] Implement spells 65495 and 65386. Signed-off-by: VladimirMangos --- src/game/SpellAuras.cpp | 16 ++++++++++++++++ src/shared/revision_nr.h | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) 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__