[9138] Implement glyph 45783.

This commit is contained in:
VladimirMangos 2010-01-10 09:31:13 +03:00
parent 3b71868cd9
commit a0c6850553
2 changed files with 13 additions and 1 deletions

View file

@ -6005,6 +6005,18 @@ void Aura::HandleSpellSpecificBoosts(bool apply)
else
return;
}
// Shadowflame (DoT)
else if (m_spellProto->SpellFamilyFlags2 & 0x00000002)
{
// Glyph of Shadowflame
Unit* caster;
if(!apply)
spellId1 = 63311;
else if(((caster = GetCaster())) && caster->HasAura(63310))
spellId1 = 63311;
else
return;
}
else
return;
break;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9137"
#define REVISION_NR "9138"
#endif // __REVISION_NR_H__