Jump to content

[patch][8954] Day of the Dead Spells - Core Support


Guest LordJZ

Recommended Posts

diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp
index 8af7235..bd81ad2 100644
--- a/src/game/SpellAuras.cpp
+++ b/src/game/SpellAuras.cpp
@@ -3124,6 +3124,22 @@ void Aura::HandleAuraTransform(bool apply, bool Real)
                }
                // Murloc costume
                case 42365: m_target->SetDisplayId(21723); break;
+                // Honor of the Dead
+                case 65495:
+                case 65386:
+                {
+                    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;
            }
        }

Probably need DB support also (creature_model_something).

Link to comment
Share on other sites

  • 2 weeks later...
  • 4 weeks later...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use