[11231] Add dummy aura effect for spell 43969

TODO: fix spell so that no initial aggro are made. Possibly other requirements are needed for effect.

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2011-03-08 12:51:06 +01:00
parent c3f2a6be77
commit c73e3cbd67
2 changed files with 9 additions and 1 deletions

View file

@ -2394,6 +2394,14 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
return; return;
} }
case 43969: // Feathered Charm
{
// Steelfeather Quest Credit, Are there any requirements for this, like area?
if (m_removeMode == AURA_REMOVE_BY_EXPIRE)
target->CastSpell(target, 43984, true);
return;
}
case 44191: // Flame Strike case 44191: // Flame Strike
{ {
if (target->GetMap()->IsDungeon()) if (target->GetMap()->IsDungeon())

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 "11230" #define REVISION_NR "11231"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__