diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index fa3aaf57ef2..b4cdd908b77 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -6385,6 +6385,24 @@ void Aura::HandleSpellSpecificBoosts(bool apply) spellId3 = 24397; spellId4 = 26592; } + // Freezing Trap Effect + else if (m_spellProto->SpellFamilyFlags & UI64LIT(0x0000000000000008)) + { + if(!apply) + { + Unit *caster = GetCaster(); + // Glyph of Freezing Trap + if (caster && caster->HasAura(56845)) + { + cast_at_remove = true; + spellId1 = 61394; + } + else + return; + } + else + return; + } // Aspect of the Dragonhawk dodge else if (GetSpellProto()->SpellFamilyFlags2 & 0x00001000) { diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 715686f074c..0aaa270a0c6 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 "9867" + #define REVISION_NR "9868" #endif // __REVISION_NR_H__