diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index a082435a2..ccbdcc46a 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1948,6 +1948,16 @@ void Aura::HandleAuraDummy(bool apply, bool Real) m_modifier.periodictime = 30*IN_MILLISECONDS; m_periodicTimer = m_modifier.periodictime; return; + case 31606: // Stormcrow Amulet + { + CreatureInfo const * cInfo = ObjectMgr::GetCreatureTemplate(17970); + + // we must assume db or script set display id to native at ending flight (if not, target is stuck with this model) + if (cInfo) + target->SetDisplayId(Creature::ChooseDisplayId(0, cInfo)); + + return; + } case 13139: // net-o-matic // root to self part of (root_target->charge->root_self sequence if (Unit* caster = GetCaster()) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 96b1b60e7..bc9e452e2 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 "10301" + #define REVISION_NR "10302" #endif // __REVISION_NR_H__