mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[9138] Implement glyph 45783.
This commit is contained in:
parent
3b71868cd9
commit
a0c6850553
2 changed files with 13 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "9137"
|
||||
#define REVISION_NR "9138"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue