Core/Spells: Fix Glyph of Freezing Trap

This commit is contained in:
Shocker
2011-05-02 18:36:08 +03:00
parent f70d5196ac
commit e36e6f3281

View File

@@ -1400,6 +1400,12 @@ void Aura::HandleAuraSpecificMods(AuraApplication const * aurApp, Unit * caster,
break;
}
break;
case SPELLFAMILY_HUNTER:
// Glyph of Freezing Trap
if (GetSpellProto()->SpellFamilyFlags[0] & 0x00000008)
if (caster && caster->HasAura(56845))
target->CastSpell(target, 61394, true);
break;
}
}