[10019] Implement glyph 45623.

Thanks to Most_Mangos, DonTomika, darkstalker  for dollution research.
This commit is contained in:
VladimirMangos 2010-06-02 03:42:12 +04:00
parent 1750f61d73
commit 57ca730a2f
2 changed files with 10 additions and 1 deletions

View file

@ -6391,6 +6391,15 @@ void Aura::HandleSpellSpecificBoosts(bool apply)
} }
break; break;
} }
case SPELLFAMILY_DRUID:
{
// Barkskin
if (GetId()==22812 && m_target->HasAura(63057)) // Glyph of Barkskin
spellId1 = 63058; // Glyph - Barkskin 01
else
return;
break;
}
case SPELLFAMILY_ROGUE: case SPELLFAMILY_ROGUE:
// Sprint (skip non player casted spells by category) // Sprint (skip non player casted spells by category)
if (GetSpellProto()->SpellFamilyFlags & UI64LIT(0x0000000000000040) && GetSpellProto()->Category == 44) if (GetSpellProto()->SpellFamilyFlags & UI64LIT(0x0000000000000040) && GetSpellProto()->Category == 44)

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "10018" #define REVISION_NR "10019"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__